Ok if anyone knows how to do python programming please help, this is my last assignment and i cant figure out how i should start this here are the directions...
You are to write a Python program that randomly generates birthdays – considering only the month and day. For example, one birthday you might generate could be: March 2. Another birthday that you might generate could be November 22. Your program must keep track of all of the birthdays that you generate in some sort of list data structure. (You can decide on the details of how you use one or more lists.) Your program should continue generating random birthdays until the first time you generate a birthday twice.
Your program must print out the following output:
1. The complete list of birthdays that you generated.
2. The birthday that was generated twice (printed separately from the list).
3. The count of birthdays the occurred in each month.
You are encouraged to spend some time thinking about how you will write this program. You need to decide which data structure(s) you want. Note you must use lists (somehow) to store the birthdays. You need to decide how you will represent the birthdays internally. Will you use month names? Month numbers? Both? You could even represent birthdays as a number between 1 and 365 but then you would need to convert them to Month/Day format for printing. You need to decide how you will use the random module to generate a random birthday. You need to decide how you will structure your program. How many functions will you use? Finally, you should consider testing and developing small pieces, as you go along.
Please help, how should i start going about starting this, im trying to decide do i make two seperate lists of months and days or combine them all?
Please help thanks