Python中datetime模块常用的方法有哪些
小亿
89
2024-03-12 17:16:40
Python中datetime模块常用的方法有:
- datetime.datetime.now(): 返回当前的日期和时间。
- datetime.datetime(year, month, day, hour, minute, second): 创建一个指定日期和时间的datetime对象。
- datetime.datetime.strptime(date_string, format): 将一个字符串转换为datetime对象,需要指定字符串的格式。
- datetime.datetime.strftime(format): 将datetime对象转换为指定格式的字符串。
- datetime.datetime.date(): 返回datetime对象的日期部分。
- datetime.datetime.time(): 返回datetime对象的时间部分。
- datetime.datetime.timestamp(): 返回datetime对象的时间戳。
- datetime.datetime.replace(year, month, day, hour, minute, second): 替换datetime对象的指定部分。
- datetime.timedelta(days, seconds, microseconds): 表示一段时间间隔,可以用来进行日期和时间的加减运算。
- datetime.timedelta.total_seconds(): 返回时间间隔的总秒数。