python time,datetime,string转换
程序员文章站
2022-03-30 20:08:32
...
# 把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 datetime和unix时间戳之间相互转换的讲解
-
Python3中内置类型bytes和str用法及byte和string之间各种编码转换 问题
-
Python中time模块与datetime模块在使用中的不同之处
-
Python中时间datetime的处理与转换用法总结
-
Python3.5内置模块之time与datetime模块用法实例分析
-
python string与bytes定义,相互转换
-
python_time和datetime模块
-
python timestamp和datetime之间转换详解
-
Python中实现对Timestamp和Datetime及UTC时间之间的转换
-
Python时间模块datetime、time、calendar的使用方法