不知道为什么我的代码不起作用

时间:2017-09-15 06:24:56

标签: python python-3.x python-requests

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月。 请帮助:)

0 个答案:

没有答案