python Python字符串与datetime,date,time互转

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python字符串与datetime,date,time互转相关的知识,希望对你有一定的参考价值。

# 参考链接: https://www.cnblogs.com/cathouse/archive/2012/11/19/2777678.html
# datetime篇

from datetime import datetime
text = '2012-09-20'
y = datetime.strptime(text, '%Y-%m-%d') # 字符串转datetime
z = datetime.strftime(y, '%Y-%m-%d') # datetime转字符串

# time篇

time.strftime('%Y%m%d%H%M%S')

# date篇

some_date.strftime('%Y-%m-%d')

以上是关于python Python字符串与datetime,date,time互转的主要内容,如果未能解决你的问题,请参考以下文章

python中datetime模块中的strftime与strptime

python中datetime模块中的strftime与strptime

python datetime 与 time模块

Python之time与datetime模块

python中日期字符串与datetime类型的相互转换

python日期与字符串互转