python中leap指什么_Pythoncalendarisleap()⽤法及代码⽰
例
⽇历模块允许输出类似于程序的⽇历,并提供与⽇历相关的其他有⽤功能。“⽇历”模块中定义的函数和类使⽤理想化的⽇历,当前的公
历⽇历在两个⽅向上都⽆限期扩展。
在Python中,()是⽇历模块中提供的⽤于简单⽂本⽇历的功能。
如果年份是a年,则使⽤isleap()⽅法获取值True,否则返回Fal。
⽤法:isleap()
参数:
year:Yeartobetestedleapornot.
返回:ReturnsTrueiftheyearisaleapyear,otherwiFal.
代码1:
#Pythonprogramtoexplainworkingofisleap()method
#importingcalendarmodule
importcalendar
#checkingwhethergivenyearisleapornot
print((2016))
print((2001))
输出:
True
Fal
代码2:解释⼯作isleap()⽅法。
如果给定年份为年,则下⾯的代码将打印第4个⽉的⽇历,否则通知年份为⾮leap年。
#Pythoncodetodemonstratetheworkingofisleap()
#importingcalendarmoduleforcalendaroperations
importcalendar
year=2017
#callingisleap()methodtoverify
val=(year)
#checkingtheconditionisTrueornot
ifval==True:
#print4thmonthofgivenleapyear
h(year,4,2,1)
#ReturnedFal,yearisnotaleap
el:
print("%sisnotaleapyear"%year)
输出:
2017isnotaleapyear
本文发布于:2022-11-27 13:02:11,感谢您对本站的认可!
本文链接:http://www.wtabcd.cn/fanwen/fan/90/31136.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |