标签:time bsp now() 当前时间 alt art style 技术 day
#显示当前时间 import datetime print(datetime.datetime.now()) from datetime import datetime print(datetime.utcnow())
from datetime import datetime
dt=datetime(2016,3,8,12,12) print(dt.year) print(dt.month) print(dt.day) print(dt.hour) print(dt.minute)
#字符串转时间 from datetime import datetime print(datetime.strptime(‘2015-6-1 18:19:59‘,‘%Y-%m-%d %H:%M:%S‘)) #2017/9/30 print(datetime.strptime(‘2017/9/30‘,‘%Y/%m/%d‘))
#2017年9月30日星期六 print(datetime.strptime(‘2017年9月30日星期六‘,‘%Y年%m月%d日星期六‘)) #2017年9月30日星期六8时42分24秒 print(datetime.strptime(‘2017年9月30日星期六8时42分24秒‘,‘%Y年%m月%d日星期六%H时%M分%S秒‘)) #9/30/2017 print(datetime.strptime(‘9/30/2017‘,‘%m/%d/%Y‘)) #9/30/2017 8:42:50 print(datetime.strptime(‘9/30/2017 8:42:50‘,‘%m/%d/%Y %H:%M:%S‘)) #2017年9月28日星期四10时3分43秒 print(datetime.strptime(‘2017年9月28日星期四10时3分43秒‘,‘%Y年%m月%d日星期四%H时%M分%S秒‘))
#将以下datetime类型转换成字符串: from datetime import datetime dt=datetime(2017,9,30,10,3,43) #2017年9月28日星期四10时3分43秒 print(dt.strftime(‘%Y年%m月%d日%H时%M分%S秒‘)) #Saturday, September 30, 2017 print(dt.strftime(‘%A,%B,%d,%Y‘)) #9/30/2017 9:22:17 AM print(dt.strftime(‘%m/%d/%Y %H:%M:%S %p‘)) #September 30, 2017 print(dt.strftime(‘%B %d,%Y‘))
#用系统时间输出以下字符串: from datetime import datetime dt=datetime.now() #今天是2017年9月28日 print(‘今天是‘,dt.strftime(‘%Y年%m月%d日‘)) #今天是这周的第1天 print(‘今天是这周的第‘,dt.strftime(‘%w天‘)) #今天是今年的第067天 print(‘今天是今年的第‘,dt.strftime(‘%j天‘)) #今周是今年的第10周 print(‘今周是今年的第‘,dt.strftime(‘%W周‘)) #今天是当月的第08天 print(‘今天是当月的第‘,dt.strftime(‘%d天‘))
标签:time bsp now() 当前时间 alt art style 技术 day
原文地址:http://www.cnblogs.com/834477300j/p/7615309.html