python3 5月26日 time模块常用时间转换
Posted zhangmingda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 5月26日 time模块常用时间转换相关的知识,希望对你有一定的参考价值。
import time
获取当前时间:
指定字符串格式:time.strftime("%Y-%m-%d %H:%M:%S")
当前时间戳:time.time()
当前时间元组格式:time.localtime()
字符串转时间格式
将时间字符串转按指定格式换为元组<class ‘time.struct_time‘>
time.strptime(“字符串”,format("%Y-%m-%dT%H:%M:%SZ"))
将时间格式转换为时间戳:
time.mktime(‘class ‘time.struct_time’格式的元组) #将时间格式元组转换为时间戳 <class ‘float‘>
time.gmtime(时间戳)将时间戳转换为UTC时间元组
time.localtime(时间戳)将时间戳转换为本地时区的时间元组
time.ctime(‘时间戳’)将时间戳转换为字符串(本地时间) 如Sat May 26 21:11:24 2018
time.asctime(时间元组)将时间格式元组转换为 特定固定格式字符串 如Sat May 26 21:11:24 2018
以上是关于python3 5月26日 time模块常用时间转换的主要内容,如果未能解决你的问题,请参考以下文章