0


python中datetime和time中的时间格式的转换

time
time.sleep(5)
time.time() # 获取当前时间戳(类型为float)
在这里插入图片描述将时间戳转化成时间元组time.struct_time
time.localtime() 返回当地时间下的时间元组t / time.gmtime() 转换为UTC时区(0时区)的struct_time
在这里插入图片描述

time.mktime()
将struct_time元组转化成时间戳
在这里插入图片描述

time.strftime()
把time.struct_time转换成string
例:n=time.strftime("%Y-%m-%d %H:%M:%S %A",t_1)
在这里插入图片描述
time.strptime(n,"%Y-%m-%d %H:%M:%S %A")
#将字符串转化为time.struct_time
在这里插入图片描述

datetime
datetime.datetime.now() #获取当前时间
datetime.datetime.strptime(“2020-07-09 18:21:17”,"%Y-%m-%d %H:%M:%S" )
将字符串转化成datatime.datatime。
在这里插入图片描述
datatime.datatime.now().strftime("%Y-%m-%d %H:%M:%S")
返回字符串
在这里插入图片描述

标签: python

本文转载自: https://blog.csdn.net/m0_52118763/article/details/120995089
版权归原作者 开始King 所有, 如有侵权,请联系我们删除。

“python中datetime和time中的时间格式的转换”的评论:

还没有评论