牛客635982258号
牛客635982258号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客635982258号的博客
全部文章
/ 题解
(共1篇)
题解 | #计算日期到天数转换#
给不太会用datetime模块的我自己 def ifleapyear(year): if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): return True days_in_month = [31,...
Python3
字符串
数组
2022-01-15
0
246