python随笔---录入月份的值,输出对应的季节

匿名 (未验证) 提交于 2019-12-02 22:56:40

以下为弱基础小白实现代码:

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("月份输入不规范,请重新输入!")

有任何错误和不足的地方,请在下面留言指正!谢谢

原文:https://www.cnblogs.com/ilovezzh/p/9349850.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!