首页 编程学习

import datetime

# 1. 获取当前时间
now = datetime.datetime.now()
print(now)
# >>> 2021-11-14 15:42:01.803790

# 2. 指定日期
# Note: 格式:年,月,日,时,分,秒;数字前不能有0,即不能为05,只能是5。
date = datetime.datetime(2021,11,14)                  
date_2 = datetime.datetime(2021,11,14,15,47,10)
print(date)
# >>> 2021-11-14 00:00:00
print(date2)
# >>> 2021-11-14 15:47:10

# 3. 格式化输出时间
date = datetime.datetime.now()
date_str = date.strftime("%Y-%m-%d %H:%M:%S")  # strftime 日期转字符串,Y年、m月、d日、H时、M分、S秒
print(date_str)
# >>> 2021-11-14 15:49:03

# 4. 格式化的字符串转时间
date_str = '2021-11-14 15:53:30'
date = datetime.datetime.strptime(date_str,"%Y-%m-%d %H:%M:%S")
print(date)
# >>> 2021-11-14 15:53:30


文章评论