Python123平台实现输入年月,输出当月天数
2020-04-24 本文已影响0人
littlePi的简简
这两天做了Python123平台的作业,平台对输入输出的格式要求还是挺高的,经过几番努力才达到平台的输出格式标准
图片中是实现小程序的代码,运用了calendar包
%导入calendar
import calendar
%键盘连续输入年月,用逗号隔开
year,month=map(int,input().split(','))
%输入时是字符串,转化为整型
year = int(year)
month = int(month)
%利用calendar自带的函数进行计算
monthRange = calendar.monthrange(year,month)
%为了方便看缩进,导入图片
这个程序实际上是非常简单的,烦请大家批评指正