【说站】python mktime()如何计算时间
2024-12-14
17
python mktime()如何计算时间
说明
为了实现time库的加法运算,有必要将我们输入的日期数据转换为time库可识别的日期数据。
1、time.mktime()函数可以将数字转换为time库的日期数据,然后进行加法运算。
注意
2、time.mktime()函数接受9位元组数据,少1位会出错。
元组数据的意义分别是年、月、日、时、分、秒、星期几、今年的第几天,是否是夏令时。倒数2、3位数与前一天发生冲突时,time.mktime()函数会自动修正。
实例
import time t = (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 + 500 struct_time = time.localtime(second_time2) print(time.strftime("%Y-%m-%d %H:%M:%S", struct_time))
以上就是python mktime()计算时间的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:4天前赞一波!2
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python字符串中有哪些方法
- 【说站】python格式字符串是什么
- 【说站】python默认索引是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python序列操作的整理
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】python搜索模块如何查询
- 【说站】python如何定义索引模块类
- 【说站】python数据模块类如何定义
- 【说站】python zip函数的使用注意
文章评论
评论问答