Python中datetime库如何使用
发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,这期内容当中小编将会给大家带来有关Python中datetime库如何使用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。datetime模块包含用于进行日期和时间解
千家信息网最后更新 2025年01月22日Python中datetime库如何使用
这期内容当中小编将会给大家带来有关Python中datetime库如何使用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
datetime模块包含用于进行日期和时间解析、格式化和运算的函数与类
时间
时间值可以通过time类表示,time实例包含小时、分钟、秒、毫秒属性,同时也包含时区信息。time实例只保存时间取值,和日期没有关系。time的精度是微妙。
import datetime
def time_study():
t = datetime.time()
print (t)
t = datetime.time(0, 2, 3)
print (t)
t = datetime.time(1, 2, 3, microsecond=2)
print (t)
print (t.microsecond)
print (t.tzinfo)
print ("Earliest :", datetime.time.min)
print ("Latest :", datetime.time.max)
print ("Resolution:", datetime.time.resolution)
日期
日历日期值可以通过date类表示,date实例包含年、月、日属性。使用类方法today()可以很容易的创建当前日期。下述展示创建日期的几种方式
使用固定值
使用时间戳
使用replace方法
def date_study():
date = datetime.date(1, 1, 1)
print (date)
print (date.toordinal())
import time
ts = time.time()
date = datetime.date.fromtimestamp(ts)
print (date)
date = datetime.date.today()
print (date)
date_2 = date.replace(year=2019)
print (date_2)
today = datetime.date.today()
print (today)
print ('ctime :', today.ctime())
print ('ordinal:', today.toordinal())
tt = today.timetuple()
print ('timetuple: tm_year = ', tt.tm_year)
print ("Earliest :", datetime.date.min)
print ("Latest :", datetime.date.max)
print ("Resolution:", datetime.date.resolution)
timedeltas
两个datetime对象或者datetime对象和timedelta通过算术操作,可以得到其他日期。两个date相减可以得到timedelta。timedelta内部以天、秒、微秒为单位存储。
def timedelta_study():
print ('hours: ', datetime.timedelta(hours=10))
print ('days: ', datetime.timedelta(days=1, seconds=100))
delta = datetime.timedelta(days=1, seconds=100)
print ('total seconds: ', delta.total_seconds())
日期算术
日期支持标准的算术运算符,下述例子中展示了使用timedelta产生新的日期以及两个日期相减得到timedelta。
def date_arithmetic_study():
today = datetime.date.today()
one_day = datetime.timedelta(days=1)
yesterday = today - one_day
tommorow = today + one_day
print ('today: ', today)
print ('yesterday: ', yesterday)
print ('tommorow: ', tommorow)
print ('tommorow - yesterday: ', tommorow - yesterday)
日期比较
date和time实例支持标准的比较运算符,可以确定那个日期更早或更晚
def date_compare_study():
t_1 = datetime.time(1, 2, 3)
t_2 = datetime.time(4, 5, 6)
print (t_1)
print (t_2)
print ('t_1 < t_2 :', t_1 < t_2)
d_1 = datetime.date.today()
d_2 = datetime.date.today() + datetime.timedelta(days=1)
print (d_1)
print (d_2)
print ('d_1 > d_2 :', d_1 > d_2)
日期和时间合并
datetime类合并了date和time组件,与date一样,有几个方便的类方法创建datetime实例。
def combine_date_and_time():
print ('Now :', datetime.datetime.now())
print ('Today:', datetime.datetime.today())
d = datetime.datetime.now()
print ('datetime Year:', getattr(d, 'year'))
print ('datetime Hour:', getattr(d, 'hour'))
t = datetime.time(1, 2, 3)
d = datetime.date.today()
dt = datetime.datetime.combine(d, t)
print (dt)
日期格式化与解析
datetime默认字符串表示使用的是ISO-8601格式, strftime:将datetime转换成指定格式 strptime:将指定格式的字符串转换成datetime对象
def format_and_parse():
dt = datetime.datetime.now()
print (dt)
dt_format = '%Y-%m-%d %H:%M:%S'
dt_str = dt.strftime(dt_format)
print (dt_str)
dt_new = datetime.datetime.strptime(dt_str, dt_format)
print (dt_new.strftime(dt_format))
print ('{:%Y-%m-%d}'.format(dt))
符号 | 描述 |
---|---|
%Y | 完整年份,带世纪 |
%m | 月份 |
%d | 日(零填充) |
%H | 小时(24时制) |
%M | 分钟 |
%S | 秒 |
%w | 周几 |
%W | 该年的第几周 |
%j | 该年的第几天 |
上述就是小编为大家分享的Python中datetime库如何使用了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。
日期
时间
实例
格式
两个
对象
方法
算术
运算
内容
可以通过
字符
字符串
小时
属性
标准
运算符
分析
支持
微妙
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
巨兽战场服务器维修时间
城市规划和软件开发哪个挣钱
哪里可以找网络安全课程
青岛市产业园区软件开发商
bvd数据库都有什么
我的世界服务器联机吧
网络安全绘画四开画纸
广州新华互联网科技学校介绍
数据库包和包体
软件开发技术展望论文
数据库中视图怎么建立索引
瓦工服务器
开发终端软件开发
sql数据库没了怎么查看
自建ftp服务器软件
网络安全自学有用吗
地产软件开发市场价
高级软件开发工程师的待遇
网络安全经典试题
山西pdu服务器电源大概多少钱
元气骑士渠道服务器
测试中数据库重要吗
安徽名优网络技术开发口碑推荐
郑州正规软件开发价钱是多少
进销存软件开发项目
mc花雨庭服务器端口
wow服务器类型rp
俄罗斯网络安全中心
洛阳t3财务软件开发
神泣数据库漏洞