datetime处理日期和时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datetime处理日期和时间相关的知识,希望对你有一定的参考价值。
1、datetime.now() # 获取当前datetime
datetime.utcnow()
from datetime import datetime datetime.now()
2、datetime(2017, 5, 23, 12, 20) # 用指定日期时间创建datetime
from datetime import datetime dt=datetime(2017, 5, 23, 12, 20) print(dt)
3、将以下字符串转换成datetime类型:
‘2017/9/30‘
‘2017年9月30日星期六‘
‘2017年9月30日星期六8时42分24秒‘
‘9/30/2017‘
‘9/30/2017 8:42:50 ‘
from datetime import datetime time1=datetime.strptime(‘2017/9/30‘,‘%Y/%m/%d‘) print(time1) time2=datetime.strptime(‘2017年9月30日星期六‘,‘%Y年%m月%d日星期六‘) print(time2) time3=datetime.strptime(‘2017年9月30日星期六8时42分24秒‘,‘%Y年%m月%d日星期六%H时%M分%S秒‘) print(time3) time4=datetime.strptime(‘9/30/2017‘,‘%m/%d/%Y‘) print(time4) time5=datetime.strptime(‘9/30/2017 8:42:50 ‘,‘%m/%d/%Y %H:%M:%S ‘) print(time5)
4、将以下datetime类型转换成字符串:
2017年9月28日星期4,10时3分43秒
Saturday, September 30, 2017
9/30/2017 9:22:17 AM
September 30, 2017
from datetime import datetime now=datetime(2017,9,30) a1=now.strftime(‘today is %Y,%m,%d‘) print(a1) a2=now.strftime(‘today is the %w day of this week‘) print(a2) a3=now.strftime(‘today is the %j day of this year‘) print(a3) a4=now.strftime(‘this week is the %W week of this year‘) print(a4) a5=now.strftime(‘today is the %d day of this month‘) print(a5)
5、今天是2017年9月30日
今天是这周的第?天
今天是今年的第?天
今周是今年的第?周
今天是当月的第?天
print(‘今天是‘,now.strftime(‘%Y‘),‘年‘,now.strftime(‘%m‘),‘月‘,now.strftime(‘%d‘),‘日‘) print(‘今天是这周的第‘,now.strftime(‘%w‘),‘天‘) print(‘今天是今年的第‘,now.strftime(‘%j‘),‘天‘) print(‘今周是今年的第‘,now.strftime(‘%W‘),‘周‘) print(‘今天是当月的第‘,now.strftime(‘%d‘),‘天‘)
以上是关于datetime处理日期和时间的主要内容,如果未能解决你的问题,请参考以下文章