python time,datetime,string转换
程序员文章站
2024-01-07 11:35:52
...
# 把datetime转成字符串 def datetime_toString(dt): return dt.strftime("%Y-%m-%d-%H") # 把字符串转成datetime def string_toDatetime(string): return datetime.strptime(string, "%Y-%m-%d-%H") # 把字符串转成时间戳形式 def string_toTimestamp(strTime): return time.mktime(string_toDatetime(strTime).timetuple()) # 把时间戳转成字符串形式 def timestamp_toString(stamp): return time.strftime("%Y-%m-%d-%H", tiem.localtime(stamp)) # 把datetime类型转外时间戳形式 def datetime_toTimestamp(dateTim): return time.mktime(dateTim.timetuple())
推荐阅读
-
python time,datetime,string转换
-
python中time模块与datetime模块的详解
-
Python中的time模块与datetime模块用法总结
-
Python中的time模块与datetime模块用法总结
-
Python3.5内置模块之time与datetime模块用法实例分析
-
python使用time、datetime返回工作日列表实例代码
-
Python中time模块与datetime模块在使用中的不同之处
-
Python中时间datetime的处理与转换用法总结
-
Python中实现对Timestamp和Datetime及UTC时间之间的转换
-
Python时间模块datetime、time、calendar的使用方法