1、价值上万元的专业的PPT报告模板。
2、专业案例分析和解读笔记。
3、实用的Excel、Word、PPT技巧。
4、VIP讨论群,共享资源。
5、优惠的会员商品。
6、一次付费只需99元,即可下载本站文章涉及的文件和软件。
在Python中,我们用于处理时间和日期相关的类型最常用的模块是datetime
模块。该模块提供了很多与时间日期相关的类,对我们处理时间日期变得很方便。
以下是一些常见的关于时间日期的操作。
1
2
3
4
5
6
|
from datetime import datetime today = datetime.today() now = datetime.now() print ( "当前日期和时间是:" , today) # 当前日期和时间是: 2024-07-29 21:05:42.281563 print ( "当前日期和时间是:" , now) # 当前日期和时间是: 2024-07-29 21:05:42.281563 |
1
2
3
4
|
specific_date = datetime( 2024 , 7 , 29 ) specific_date1 = datetime( 2024 , 7 , 30 , 21 , 55 , 00 ) print ( "指定日期是:" , specific_date) # 指定日期是: 2024-07-29 00:00:00 print ( "指定日期是:" , specific_date1) # 指定日期是: 2024-07-30 21:55:00 |
1
2
3
4
5
|
# 两个日期相减会得到时间差对象(timedelta) delta = specific_date1 - specific_date print (delta, type (delta)) # 1 day, 21:55:00 <class 'datetime.timedelta'> # 获取两个日期相差的天数和秒数 print (delta.days, delta.seconds) # 1 78900 |
1
2
3
4
5
6
7
8
9
|
# 通过datetime对象的属性,单独获取时间的年月日时分秒 year = now.year month = now.month day = now.day hour = now.hour minute = now.minute second = now.second print (f "年: {year}, 月: {month}, 日: {day}, 时: {hour}, 分: {minute}, 秒: {second}" ) # 输出->年: 2024, 月: 7, 日: 29, 时: 21, 分: 08, 秒: 40 |
1
2
3
|
# 格式化时间对象 formatted_datetime = now.strftime( '%Y年%m月%d日 %H时%M分%S秒' ) print ( "格式化时间:" , formatted_datetime) # 2024年07月29日 21时08分19秒 |
date
类一般用于处理日期(年、月、日)。
1
2
3
4
5
6
7
8
|
from datetime import date today1 = date.today() year = today1.year month = today1.month day = today1.day print (today1) # 2024-07-29 print (f "年: {year}, 月: {month}, 日: {day}" ) # 年: 2024, 月: 7, 日: 29 |
time
类主要用于处理时间(时、分、秒、微秒)。
1
2
3
4
|
from datetime import time current_time = time( 15 , 48 , 6 ) # 假设当前时间是15时48分6秒 print ( "当前时间:" , current_time) # 当前时间: 15:48:06 |
1
2
3
4
5
6
7
|
precise_time = time( 15 , 48 , 6 , 123456 ) print ( "精确时间:" , precise_time) hour = current_time.hour minute = current_time.minute second = current_time.second microsecond = precise_time.microsecond print (f "时: {hour}, 分: {minute}, 秒: {second}, 微秒: {microsecond}" ) # 时: 15, 分: 48, 秒: 6, 微秒: 123456 |
1
2
3
4
5
6
7
8
9
|
from datetime import timedelta # 计算未来三天的日期 future_date = now + timedelta(days = 3 ) print ( "三天后的日期:" , future_date) # 三天后的日期: 2024-08-01 21:16:26.496122 # 计算过去一小时的时间 past_time = now - timedelta(hours = 1 ) print ( "过去1小时时间:" , past_time) # 过去1小时时间:2024-07-28 20:16:26.496122 |
1
2
|
delta = timedelta(weeks = 1 , days = 1 , hours = 1 , minutes = 1 , seconds = 1 , microseconds = 1 ) print ( "时间:" , delta) # 时间: 8 days, 1:01:01.000001 |
到此这篇关于Python时间日期常见的一些操作方法的文章就介绍到这了。
学习资料见知识星球。
以上就是今天要分享的技巧,你学会了吗?若有什么问题,欢迎在下方留言。
快来试试吧,小琥 my21ke007。获取 1000个免费 Excel模板福利!
更多技巧, www.excelbook.cn
欢迎 加入 零售创新 知识星球,知识星球主要以数据分析、报告分享、数据工具讨论为主;
1、价值上万元的专业的PPT报告模板。
2、专业案例分析和解读笔记。
3、实用的Excel、Word、PPT技巧。
4、VIP讨论群,共享资源。
5、优惠的会员商品。
6、一次付费只需99元,即可下载本站文章涉及的文件和软件。