位置: IT常识 - 正文
推荐整理分享python mktime()如何计算时间(python中mktime函数),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:python中from time import clock,python time mktime,python time.ctime(),pythontimer,python mktemp,python time.gmtime,pythongmtime,pythongmtime,内容如对您有帮助,希望把文章链接给更多的朋友!
说明
为了实现time库的加法运算,有必要将我们输入的日期数据转换为time库可识别的日期数据。
1、time.mktime()函数可以将数字转换为time库的日期数据,然后进行加法运算。
注意
2、time.mktime()函数接受9位元组数据,少1位会出错。
元组数据的意义分别是年、月、日、时、分、秒、星期几、今年的第几天,是否是夏令时。倒数2、3位数与前一天发生冲突时,time.mktime()函数会自动修正。
实例
importtimet=(2021,2,17,17,3,38,1,48,0)second_time=time.mktime(t)struct_time=time.localtime(second_time)print(time.strftime("%Y-%m-%d%H:%M:%S",struct_time))second_time2=second_time+500struct_time=time.localtime(second_time2)print(time.strftime("%Y-%m-%d%H:%M:%S",struct_time))以上就是python mktime()计算时间的方法,希望对大家有所帮助。更多Python学习指路:Python基础教程
上一篇:python中socket建立客户连接(python socketio)
下一篇:python idle 是什么(python里的idle在哪)
友情链接: 武汉网站建设