python隨筆---錄入月份的值,輸出對應的季節
阿新 • • 發佈:2018-07-22
ima col 謝謝 for input wid class 12月 color
首先獲取一個輸入,加判斷,輸入對應的月份,季節判定根據氣象劃分法(氣象劃分法:在氣象部門,通常以陽歷3~5月為春季,6~8月為夏季,9~11月為秋季,12月~來年2月為冬季,並且常常把1、4、7、10月作為冬、春、夏、秋季的代表月份)
以下為弱基礎小白實現代碼:
month = int(input("請輸入月份:")) if month >= 3 and month <= 5: print("你輸入的{}月份是春天".format(month)) elif month >= 6 and month <= 8: print("你輸入的{}月份是夏天".format(month))elif month >= 9 and month <= 11: print("你輸入的{}月份是秋天".format(month)) elif month ==12 or month == 1 or month == 2 : print("你輸入的{}月份是冬天".format(month)) else: print("月份輸入不規範,請重新輸入!")
有任何錯誤和不足的地方,請在下面留言指正!謝謝
python隨筆---錄入月份的值,輸出對應的季節