📘 Day 16
🎉 本系列为 Python 基础学习,原稿来源于 30-Days-Of-Python 英文项目,大奇主要是对其本地化翻译、逐条验证和补充,想通过 30 天完成正儿八经的系统化实践。此系列适合零基础同学,或仅了解 Python 一点知识,但又没有系统学习的使用者。总之如果你想提升自己的 Python 技能,欢迎加入《挑战 30 天学完 Python》
Python datetime
Python 内置有 datetime 模块,可以用来处理日期和时间。在编程的世界里少不了与时间打交道,因此让我们来专门学习一下 datetime 的使用。
>>> import datetime
>>> print(dir(datetime))
['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo']
复制代码
使用内置 dir 或 help 命令可以打印某个模块中可用的函数。如你所见,在 datetime 模块有很多的方法,不过我们将重点关注其中_date_, datetime, time 和 timedelta 这几个。
获取 datetime 信息
from datetime import datetime
now = datetime.now()
print(now) # 当前时间 2023-01-07 20:30:55.689393
day = now.day
month = now.month
year = now.year
hour = now.hour
minute = now.minute
second = now.second
timestamp = now.timestamp()
print(day, month, year, hour, minute) # 日 月 年 小时 秒 7 1 2023 20 30
print('timestamp', timestamp)
print(f'{day}/{month}/{year}, {hour}:{minute}') # 格式化输出时间 7/1/2023, 20:30
复制代码
时间戳或 Unix 时间戳是 UTC 时间从 1970 年 1 月 1 日开始的秒数。
使用 strftime 格式化日期输出
不使用任何内置函数方法的情况,如果我们想输出想要格式日期,我们可能需要这么做:
from datetime import datetime
new_year = datetime(2023, 1, 21) # 指定日期 2023 除夕
print(new_year) # 2023-01-21 00:00:00 时间不指定默认0点
day = new_year.day
month = new_year.month
year = new_year.year
hour = new_year.hour
minute = new_year.minute
second = new_year.second
print(day, month, year, hour, minute) #日 月 年 时 分 21 1 2023 0 0
print(f'{year}-{month}-{day} {hour}:{minute}') # 2023-1-21 0:0
复制代码
然而我们可以使用 strftime 更快速方便对时间进行格式化输出, 下面再看一些使用例子:
更新详细的 strftime 格式化日期时间方法,可以阅读这 strftime.org 网站。
from datetime import datetime
# 获取当前期日和时间
now = datetime.now()
t = now.strftime("%H:%M:%S")
print("time:", t)
time_one = now.strftime("%Y-%m-%d %H:%M:%S")
# YY-dd-mm H:M:S
print("time one:", time_one)
time_two = now.strftime("%d/%m/%Y, %H:%M:%S")
# dd/mm/YY H:M:S
print("time two:", time_two)
复制代码
time: 20:45:27
time one: 2023-01-07 20:45:27
time two: 07/01/2023, 20:45:27
复制代码
下面的图片展示了_strftime_ 模块所有格式符号。在代码编程中按需使用。
使用 strptime 将字符转时间
这里有个建议阅读文档 documentation,或许它能帮助你更好地理解。
from datetime import datetime
date_string = "5 March, 2022"
print("date_string =", date_string)
date_object = datetime.strptime(date_string, "%d %B, %Y")
print("date_object =", date_object)
复制代码
date_string = 5 March, 2022
date_object = 2022-03-05 00:00:00
复制代码
使用 datetime 模块内 date
from datetime import date
d = date(2022, 5, 1)
print(d) # 指定时间 2022-05-01
print('Current date:', d.today()) # 当前时间 2023-01-07
# 将今天的时间给予today对象
today = date.today()
print("Current year:", today.year) # 2023
print("Current month:", today.month) # 1
print("Current day:", today.day) # 7
复制代码
时间 time 对象
from datetime import time
# time(hour = 0, minute = 0, second = 0)
a = time()
print("a =", a)
# time(hour, minute 和 second)
b = time(10, 30, 50)
print("b =", b)
# time(hour, minute 和 second)
c = time(hour=10, minute=30, second=50)
print("c =", c)
# time(时, 分, 秒, 毫秒)
d = time(10, 30, 50, 200555)
print("d =", d)
复制代码
输出
a = 00:00:00
b = 10:30:50
c = 10:30:50
d = 10:30:50.200555
复制代码
时间差
时间可以直接进行差值运算
today = date(year=2019, month=12, day=5)
new_year = date(year=2020, month=1, day=1)
time_left_for_newyear = new_year - today
print('Time left for new year: ', time_left_for_newyear) # Time left for new year: 27 days, 0:00:00
t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0)
t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0)
diff = t2 - t1
print('Time left for new year:', diff) # Time left for new year: 26 days, 23: 01: 00
复制代码
使用 datetime 模块中 timedelata 方便在日期上做加减指定时间单位的加减。
from datetime import timedelta
t1 = timedelta(weeks=12, days=10, hours=4, seconds=20)
t2 = timedelta(days=7, hours=5, minutes=3, seconds=30)
t3 = t1 - t2
print("t3 =", t3)
复制代码
这个 timedelata 需要要结合 date 或 datetime 类的对象使用
from datetime import timedelta, date
today = date.today()
print(today) # 2023-01-07
yestoday = today + timedelta(days=-1)
print(yestoday) # 2023-01-06
复制代码
🌕 你是如此的努力。你已经在伟大 python 学习之路上行走了 16 步了。课后让我们按惯例做些练习吧
💻 第 16 天练习
使用 datetime 模块分别获取年、月、日、时、分 和 时间戳信息
使用 %m/%d/%Y, %H:%M:%S
格式输出当前时间
如果时间是 “2023 年 1 月 1 日”,将此字符串时间转成时间类型
计算当前时间和元旦那天的时间差
计算当前时间距离 1970 年 1 月 1 的时间差或时间戳
思考题:想想这个 datetime 模块可以实际应用在那些编码场景中呢?
🎉 CONGRATULATIONS ! 🎉
评论