本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、概念
timedalte是datetime中的一个对象,该对象表示两个时间的差值。
2、创造方法
datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)
3、参数
参数都是可选,默认值为0。
4、只读属性
timedelta.min:负数时间差,相当于timedelta(-999999999)。
timedelta.max:正数时间差,相当于timedelta(days=999999999, hours=23, minutes=59, seconds=59, microseconds=999999)。
timedelta.resolution:两个时间的最小差值相当于timedelta(microseconds=1)。
5、实例
from datetime import datetime, timedelta current_datetime = datetime.now() # future dates one_year_future_date = current_datetime + timedelta(days=365) print('Current Date:', current_datetime) print('One year from now Date:', one_year_future_date) # past dates three_days_before_date = current_datetime - timedelta(days=3) print('Three days before Date:', three_days_before_date)
对于python中的时间获取,我们最近学习的datetime模块可以解决。在这个模块中还有许多函数可以供我们使用,比如时间的差值,就可以选择对应的timedalte函数。这个函数比较特殊,有三种只读属性。
以上就是python中timedelta函数的讲解,大家在掌握基础的内容后,就可以解决时间差的计算问题了。学会后赶快就上方代码进行练习吧。