Answer:
program
Explanation:
Program that prompts the user to enter the month and year and displays the number of days in the month:
1. print("List of months: January, February, March, April, May, June, July, August, September, October, November, December")
2. month_name = input("Input the name of Month: ")
if month_name == "February":
print("No. of days: 28/29 days")
elif month_name in ("January", "March", "May", "July", "August", "October", "December"):
print("No. of days: 31 day")
elif month_name in ("April", "June", "September", "November"):
print("No. of days: 30 days")
else:
print("Wrong month name")