python編程—輸入月份判斷季節

使用列表代碼如下: month = int(input('month:')) season = [[12,1,2],[3,4,5],[6,7,8],[9,10,11]] if month in season[0][0:3]: print('winter') elif month in season[1][0:3]: print('spring') elif month in se
相關文章
相關標籤/搜索