码迷,mamicode.com
首页 > 编程语言 > 详细

python 日期格式和字符串格式的转化

时间:2018-02-27 16:32:08      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:int   body   strftime   python   log   class   star   日期   ftime   

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 日期格式和字符串格式的转化

标签:int   body   strftime   python   log   class   star   日期   ftime   

原文地址:https://www.cnblogs.com/he0xff/p/8479499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!