您现在的位置是:课程教程文章
如何用python写月份
2023-12-18 18:24课程教程文章 人已围观
用python写月份的方法:
调用input方法输入月份,用if elif循环结构筛选符合条件的信息,然后再用print打印运行结果
month = int(input('Month:')) if month in [3,4,5]: print('春季') elif month in [6,7,8]: print('夏季') elif month in [9,10,11]: print('秋季') elif month in [12,1,2]: print('冬季') else: print('请输入正确值:')
示例以及运行结果:
课程教程:如何用python写月份下一篇:没有了