标签:星期六 images 日期时间 ftime es2017 nbsp 系统时间 logs color
suki=datetime.strptime(‘2017.09.30 06:40‘,‘%Y.%m.%d %H:%M‘) print(‘今天是‘+suki.strftime(‘%Y‘)+‘年‘+suki.strftime(‘%m‘)+‘月‘+suki.strftime(‘%d‘+‘日‘))
1.datetime.now() # 获取当前datetime
datetime.datetime.now()
datetime.datetime.utcnow()
a=datetime.strptime(‘2017, 5, 23, 12, 20‘,‘%Y, %m, %d, %H, %M‘) a
datetime.strptime(‘2017/9/30‘,‘%Y/%m/%d‘) datetime.strptime(‘2017年9月30日星期六‘,‘%Y年%m月%d日星期六‘) datetime.strptime(‘2017年9月30日星期六8时42分24秒‘,‘%Y年%m月%d日星期六%H时%M分%S秒‘) datetime.strptime(‘9/30/2017‘,‘%m/%d/%Y‘) datetime.strptime(‘9/30/2017 8:42:50 ‘,‘%m/%d/%Y %H:%M:%S ‘)
将以下datetime类型转换成字符串:
dt=datetime(2017,9,28,10,3,43) print(dt.strftime(‘%Y‘+‘年‘+‘%m‘+‘月‘+‘%d‘+‘日‘+‘%A‘+‘%H‘+‘时‘+‘%M‘+‘分‘+‘%S‘+‘秒‘)) dt=datetime(2017,9,30) print(dt.strftime(‘%A,%B,%d,%Y‘)) dt=datetime(2017,9,30,9,22,17) print(dt.strftime(‘%m/%d/%Y %H:%M:%S %p‘)) dt=datetime(2017,9,30) print(dt.strftime(‘%B %d,%Y‘))
4.用系统时间输出以下字符串:
dt=datetime.now() print(‘今天是%Y年%m月%d日‘) print(dt.strftime(‘今天是%Y年%m月%d日‘)) print(dt.strftime(‘今天是这周的%w天‘)) print(dt.strftime(‘今天是今年的%j天‘)) print(dt.strftime(‘今天是今年的%w周‘)) print(dt.strftime(‘今天是当月的%d天‘))
标签:星期六 images 日期时间 ftime es2017 nbsp 系统时间 logs color
原文地址:http://www.cnblogs.com/dujiacheng789/p/7614363.html