Question: Python problem Write a program called seasons.py that asks the user for two integers representing the month (1,12] and the day (1,31] respectively. Your program
Python problem

Write a program called seasons.py that asks the user for two integers representing the month (1,12] and the day (1,31] respectively. Your program should then output, which of the four seasons ("Winter", "Spring", "Summer", or "Fall") the entered date is in. You should use the following date ranges for each season: 1. Spring: March 20th to June 20th 2. Summer: June 21st to September 22nd 3. Fall: September 23rd to December 20th 4. Winter: December 21st to March 19th Hint: You can use logical operators and / or to combine multiple Boolean expressions. Otherwise you can use nested if/elif/else statements to check the combinations of different month and day ranges. Some Outputs (user input highlighted) Enter month [1,12]: 3 Enter day (1,31]: 19 It is Winter! Enter month [1,12]: 3 Enter day (1,31]: 21 It is Spring
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
