其他分享
首页 > 其他分享> > 时间模块time-常用方法

时间模块time-常用方法

作者:互联网

时间戳

# 获取时间戳
time.time()

# 时间元组转为时间戳
time.mktime(time.localtime())

时间元组

# 获取时间元组
time.localtime()
# time.struct_time(
	# 年月日
	# tm_year=2022, tm_mon=8, tm_mday=13, 
	# 时分秒
	# tm_hour=21, tm_min=48, tm_sec=54, 
	# 本周第几天(周日是第0天),本年第几天
	# tm_wday=5, tm_yday=225, tm_isdst=-1
	# )

# 时间戳转为时间元组
time.localtime(time.time())
# 时间格式的字符串转时间元组
time.strptime("2022-08-13 21:38:5", "%Y%m%d %H:%M:%S")

字符串

# 时间元组转字符串
time.strftime("%Y%m%d %H:%M:%S", time.localtime())

# 格式化输出时间
time.strftime("%Y-%m-%d")

总结

image

标签:常用,元组,tm,时间,模块,time,字符串,localtime
来源: https://www.cnblogs.com/gao-ch/p/16584474.html