The year is divided into four seasons: spring, summer, autumn and winter. While the exact dates that the seasons change
Posted: Fri May 20, 2022 10:23 am
The year is divided into four seasons: spring, summer, autumn and winter. While the exact dates that the seasons change vary a little bit from year to year because of the way that the calendar is constructed, we will use the following dates for this: Season First day Autumn March 20 Winter Spring Summer June 21 September 22 December 21 Write a python program that inputs a month and day separately from the user. The user will enter the name of the month as a string in lower case, followed by the day within the month as an integer. Then your program should display the season associated with the date that was entered. Define and use your own function/s in your solution as well as a main function. Assume the user enters h valid inputs only. CHI