startDate = "2018-10-01"
endDate = "2018-10-31"
###字符转化为日期
startTime = datetime.datetime.strptime(startDate, ‘%Y-%m-%d‘).time()
endTime = datetime.datetime.strptime(endDate, ‘%Y-%m-%d‘).time()
now = datetime.datetime.now()
print(now)
###日期转化为字符串
print("--1---:" + datetime.datetime.strftime(startTime, "%Y-%m-%d"))
print("--2---:" + datetime.datetime.strftime(endTime, "%Y-%m-%d"))
python 日期格式和字符串格式的转化
Posted IT-物语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 日期格式和字符串格式的转化相关的知识,希望对你有一定的参考价值。
以上是关于python 日期格式和字符串格式的转化的主要内容,如果未能解决你的问题,请参考以下文章
python中datetime模块中的strftime与strptime
python中datetime模块中的strftime与strptime
python时间处理,datetime中的strftime/strptime