month = (input('Enter the month (first 3 letters): '))
if month == ('Dec' or 'Jan' or 'Feb'):
season = ('Summer')
elif month == ('Mar' or 'Apr' or 'May'):
season = ('Autumn')
elif month == ('Jun' or 'Jul' or 'Aug'):
season = ('Winter')
elif month == ('Sep' or 'Oct' or 'Nov'):
season = ('Spring')
else:
season = ('not real')
print('The month of',month,'is',season,)
我不知道为什么这不起作用。 它回来说季节没有定义。 它适用于每个的第一个结果。例如,12月,3月,6月,9月。 请帮助:)