标签:oca 一个 str 本地 时区 ring for 指定 TE
python中关于时间的处理非常常见
time.strptime
1、 time.strptime() 函数根据指定的格式把一个时间字符串解析为时间元组。如下程序截图所示
2、语法
time.strptime(string[, format])
3、参数
4、返回值: 返回struct_time对象。
5、python中时间日期格式化符号:
Python time mktime() 函数执行与gmtime(), localtime()相反的操作,它接收struct_time对象作为参数,返回用秒数来表示时间的浮点数。
官方解释:
Convert a time tuple in local time to seconds since the Epoch.
就是输出自从新纪元开始,即Unix时间(从1970年1月1日开始)以来的秒数。
标签:oca 一个 str 本地 时区 ring for 指定 TE
原文地址:https://www.cnblogs.com/xiaodongsuibi/p/9172937.html