当前位置:

首页 > 编程开发 > Python中datetime模块的使用详解

Python中datetime模块的使用详解

1、日期时间对象日期时间对象是指具有日期(年月日)和时间(时分秒)双重属性的实例日期时间对象的类型为datetime.datetime日期时间对象常用的属性有年、月、日、时、分、秒、微秒日期时间对象可以指定时间创建,也可以通过获取当前时间来创建日期时间对象指定时间创建时可按位置传参创建,也可关键字传参创建日期时间对象的创建函数有datetime.datetime(),datetime.datetime.now()、datetime.datetime.today()、datetime.datetime.ut

    1、日期时间对象

    • 日期时间对象是指具有日期(年月日)和时间(时分秒)双重属性的实例

    • 日期时间对象的类型为datetime.datetime

    • 日期时间对象常用的属性有年、月、日、时、分、秒、微秒

    • 日期时间对象可以指定时间创建,也可以通过获取当前时间来创建

    • 日期时间对象指定时间创建时可按位置传参创建,也可关键字传参创建

    • 日期时间对象的创建函数有datetime.datetime(),datetime.datetime.now()、datetime.datetime.today()、datetime.datetime.utcnow()

    • 日期时间对象通过datetime.datetime()创建时的参数依次为:year,month,day,hour,minute,second,microsecond

    • 日期时间对象通过datetime.datetime.now()函数创建不需要参数

    • 日期时间对象通过datetime.datetime.today()函数创建不需要参数

    • 日期时间对象通过datetime.datetime.utcnow()函数创建不需要参数

    • 日期时间对象通过datetime.datetime()创建时至少应该包含年、月、日三个参数

    • 日期时间对象通过datetime.datetime()创建时的参数范围如下

    序号形参实参范围
    1year1~9999
    2month1~12
    3day0~23
    4hour0~23
    5minute0~59
    6second0~59
    7microsecond1~999999

    2、创建日期时间对象

    2.1、通过datetime.datetime.utcnow()创建

    datetime_zero = datetime.datetime.utcnow()

    2.2、通过datetime.datetime.today()函数创建

    datetime_first = datetime.datetime.today()

    2.3、通过datetime.datetime.now()创建

    datetime_second = datetime.datetime.now()

    2.4、通过datetime.datetime()创建

    • 指定日期时间创建

    • 必传年、月、日参数

    • 指定日期时间、位置参数的顺序不可变且参数值必须在规定的范围内

    datetime_three = datetime.datetime(year=1, month=1, day=1, hour=0, minute=0, second=0, microsecond=1)
    datetime_four = datetime.datetime(year=9999, month=12, day=31, hour=23, minute=59, second=59, microsecond=999999)
    datetime_five = datetime.datetime(9999, 12, 31, 23, 59, 59, 999999)

    2.5、查看创建的对象

    print(datetime_zero, type(datetime_zero))       # 2022-07-09 18:12:43.486469 
    print(datetime_first, type(datetime_first))     # 2022-07-09 18:12:43.486469 
    print(datetime_second, type(datetime_second))   # 2022-07-09 18:12:43.486469 
    print(datetime_three, type(datetime_three))     # 0001-01-01 00:00:00.000001 
    print(datetime_four, type(datetime_four))       # 9999-12-31 23:59:59.999999 
    print(datetime_five, type(datetime_five))       # 9999-12-31 23:59:59.999999 

    Python中datetime模块的使用详解

    2.6、查看datetime可以处理的最大的日期时间对象及最小的日期时间对象

    print(datetime.datetime.min)        # 0001-01-01 00:00:00
    print(datetime.datetime.max)        # 9999-12-31 23:59:59.999999

    Python中datetime模块的使用详解

    3、日期事件对象的属性

    datetime_first = datetime.datetime.today()
    """# 从日期时间对象中获取日期属性【年-月-日】"""
    new_time = datetime.datetime.date(datetime_first)
    print(new_time)
    print(type(new_time))
    """# 从日期时间对象中获取时间属性【时:分:秒:微秒】"""
    new_time = datetime.datetime.time(datetime_first)
    print(new_time)
    print(type(new_time))
    """# 从日期时间对象中获取年份"""
    datetime_year = datetime_first.year
    print(datetime_year, type(datetime_year))       # 2022 
    """# 从日期时间对象中获取月份"""
    datetime_month = datetime_first.month
    print(datetime_month, type(datetime_month))       # 7 
    """# 从日期时间对象中获取天"""
    datetime_day = datetime_first.day
    print(datetime_day, type(datetime_day))       # 10 
    """# 从日期时间对象中获取小时"""
    datetime_hour = datetime_first.hour
    print(datetime_hour, type(datetime_hour))       # 18 
    """# 从日期时间对象中获取分钟"""
    datetime_minute = datetime_first.minute
    print(datetime_minute, type(datetime_minute))       # 56 
    """# 从日期时间对象中获取秒数"""
    datetime_second = datetime_first.second
    print(datetime_second, type(datetime_second))       # 16 
    """# 从日期时间对象中获取微秒"""
    datetime_microsecond = datetime_first.microsecond
    print(datetime_microsecond, type(datetime_microsecond))       # 735264 

    “”“# datetime.datetime.date()函数的参数只能是datetime.datetime类型”“”
    date_time = datetime.date(2022, 12, 26)

    “”“# 传入的参数不能为datetime.date类型”“”
    “”“# TypeError: descriptor ‘date’ for ‘datetime.datetime’ objects doesn’t apply to a ‘datetime.date’ object”“”
    “”“# print(datetime.datetime.date(date_time))”“”

    time_time = datetime.time(12, 2, 54, 999999)
    “”“# 传入的参数不能为datetime.time类型”“”
    “”“# TypeError: descriptor ‘date’ for ‘datetime.datetime’ objects doesn’t apply to a ‘datetime.time’ object”“”
    “”“# print(datetime.datetime.date(time_time))”“”
    “”“# 同理,datetime.datetime.time()函数传入的参数亦不能为datetime.date类型和datetime.time类型”“”
    “”“# TypeError: descriptor ‘time’ for ‘datetime.datetime’ objects doesn’t apply to a ‘datetime.date’ object”“”
    “”“# print(datetime.datetime.time(date_time))”“”
    “”“# TypeError: descriptor ‘time’ for ‘datetime.datetime’ objects doesn’t apply to a ‘datetime.time’ object”“”
    “”“# print(datetime.datetime.time(time_time))”""

    Python中datetime模块的使用详解

    4、日期时间对象转换为时间元组

    • 时间元组是指具有 年份、月份、日、小时、分钟、秒数、星期中的第N天、年中的第N天、夏令时标志的一个元组对象

    • 时间元组示例:(tm_year=2022, tm_mon=7, tm_mday=9, tm_hour=19, tm_min=14, tm_sec=27, tm_wday=5, tm_yday=190, tm_isdst=0)

    • 其中tm_wday的值从0开始,范围是:0~6,0为星期一,6为星期日;tm_isdst=0代表未启用夏令时

    UTCDateTime = datetime.datetime(year=2022, month=7, day=10, hour=19, minute=14, second=27, microsecond=1235)
    datetime_UTCTimeTuple = datetime.datetime.utctimetuple(UTCDateTime)
    print(datetime_UTCTimeTuple, type(datetime_UTCTimeTuple))  # 类型为:

    Python中datetime模块的使用详解

    5、将日期时间对象转化为公元历开始计数的天数

    • 日期时间对象转化为公元历开始计数的天数

    • 将一个整形数值转换为日期时间对象

    • 整形数值最大值为3652059

    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    datetime_ordinal = datetime.datetime.toordinal(datetime_replace)
    print(datetime_ordinal, type(datetime_ordinal))     # 738345 
    print(datetime.datetime.fromordinal(1))     # 0001-01-02 00:00:00
    print(datetime.datetime.fromordinal(2))     # 0001-01-02 00:00:00
    datetime_replace_max = datetime.datetime(year=9999, month=12, day=31, hour=23, minute=59, second=59, microsecond=999999)
    print(datetime.datetime.toordinal(datetime_replace_max))
    print(datetime.datetime.fromordinal(3652060))

    Python中datetime模块的使用详解

    Python中datetime模块的使用详解

    6、日期时间对象转换为一个日期格式值的字符串

    • 示例如 Sat Jul 9 19:14:27 2022(2022年7月9日星期六)

    • 第一部分的值代表星期几

    • 第二部分的值代表月份

    • 第三部分的值代表日

    • 第四部分的值代表时间

    • 第五部分的值代表年份

    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    print(datetime_replace)
    ctime_datetime = datetime.datetime.ctime(datetime_replace)
    print(ctime_datetime, type(ctime_datetime))
    ```
    ![Python标准库datetime之datetime模块详解_date_07](https://img-blog.csdnimg.cn/b7e257debb0249ca84463b9d73d7dbf1.png)
    ## 7、日期时间对象转换为时间戳
    ```python
    datetime_timestamp = datetime.datetime.timestamp(datetime_replace)
    print(datetime_timestamp, type(datetime_timestamp))         # 1657365267.000123 
    ```
    ![Python标准库datetime之datetime模块详解_datetime_08](https://img-blog.csdnimg.cn/e38e2a5be32242c5a79441e7300e2fc2.png)
    ## 8、时间戳转换为日期时间对象
    ```python
    print(datetime.datetime.fromtimestamp(datetime_timestamp))  # 2022-07-09 19:14:27.000123
    ```
    ![Python标准库datetime之datetime模块详解_datetime_08](https://img-blog.csdnimg.cn/e38e2a5be32242c5a79441e7300e2fc2.png)
    ## 9、日期时间对象转换为时间元组
    ```python
    datetime_timetuple = datetime.datetime.timetuple(datetime_replace)
    print(datetime_timetuple, type(datetime_timetuple))
    ```
    ![Python标准库datetime之datetime模块详解_datetime_08](https://img-blog.csdnimg.cn/e38e2a5be32242c5a79441e7300e2fc2.png)
    ## 10、ISO标准日期时间格式
    ISO标准的日历时间,Calendar中文释义为日历
    * 各个值的含义为(年份、周数、周内的第N天)即(year, week, weekday);
    * weekday的值为[1,7],1代表周一,7代表周日
    * 示例:datetime.IsoCalendarDate(year=2022, week=27, weekday=7)
    ```python
    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    UTCDateTime = datetime.datetime(year=2022, month=7, day=10, hour=19, minute=14, second=27, microsecond=1235)
    # ISO标准日期时间格式
    print(datetime.datetime.utcoffset(UTCDateTime))
    # 将日期时间对象转换为ISO标准日期时间格式的字符串
    UTC_ISO_DateTime = datetime.datetime.isoformat(UTCDateTime)
    print(UTC_ISO_DateTime, type(UTC_ISO_DateTime))         # 2022-07-10T19:14:27.001235 
    # 将ISO标准日期时间格式的字符串转换为日期时间类型
    From_UTC_ISO_DateTime = datetime.datetime.fromisoformat('9999-12-31T23:59:59.999999')   # 
    print(From_UTC_ISO_DateTime, type(From_UTC_ISO_DateTime))
    # ISO标准的周内第N天
    # 值的范围是[1,7],1代表周一,7代表周日
    UTC_ISO_WeekDateTime = datetime.datetime.isoweekday(UTCDateTime)
    print(UTC_ISO_WeekDateTime, type(UTC_ISO_WeekDateTime))     # 7 
    # ISO标准的日历时间,Calendar中文释义为日历
    # 各个值的含义为(年份、周数、周内的第N天)即(year, week, weekday);
    # weekday的值为[1,7],1代表周一,7代表周日
    # 示例:datetime.IsoCalendarDate(year=2022, week=27, weekday=7)
    UTC_ISO_CalendarDateTime = datetime.datetime.isocalendar(UTCDateTime)
    print(UTC_ISO_CalendarDateTime, type(UTC_ISO_CalendarDateTime))
    # 将ISO标准日历格式的字符串转换为时间日期型
    From_UTC_ISO_CalendarDateTime = datetime.datetime.fromisocalendar(year=2022, week=27, day=7)
    print(From_UTC_ISO_CalendarDateTime)        # 2022-07-10 00:00:00
    print(type(From_UTC_ISO_CalendarDateTime))  # 
    ```
    ![Python标准库datetime之datetime模块详解_python_11](https://img-blog.csdnimg.cn/bb944815182d477a9a662862f13a9f3a.png)
    ## 11、日期时间替换函数replace()
    *  replace()可以只替换日期时间属性的某一项
    * replace()函数的第一个参数必传
    * replace()函数的第一个参数是一个日期时间类型(datetime.datetime)的对象
    * 按关键字传参替换
    * 按位置传参体换
    ```python
    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    # 初始值
    print(f"datetime_replace的原值为:{datetime_replace}", f"类型是:{type(datetime_replace)}")
    # 不传参数
    print(datetime.datetime.replace(datetime_replace))    # 2022-07-09 19:14:27.000123
    # 只替换年份
    print(datetime.datetime.replace(datetime_replace, 2019))    # 2019-07-09 19:14:27.000123
    print(datetime.datetime.replace(datetime_replace, year=2019))   # 2019-07-09 19:14:27.000123
    # 只替换月份, 替换其他参数同理
    print(datetime.datetime.replace(datetime_replace, month=12))            # 2022-12-09 19:14:27.000123
    print(datetime.datetime.replace(datetime_replace, datetime_replace.year, 12))   # 2022-12-09 19:14:27.000123
    # 替换其他参数同理
    print(datetime.datetime.replace(datetime_replace, year=2019, month=12, day=31, hour=15,
                                    minute=13, second=15, microsecond=9999))    # 2019-12-31 15:13:15.009999
    ```
    ![Python标准库datetime之datetime模块详解_date_12](https://img-blog.csdnimg.cn/4ed28241d33b4928b3a8b2132b08a7d6.png)
    ## 12、日期时间对象格式化strftime()
    * 日期时间对象格式化常用的格式如下
    * %H(两位数的小时)
    * %M(两位数的分钟)
    * %S(两位数的秒)
    * %f(6位数的微秒)
    * %h(简写的月份名,一般为英文简写)
    * %y(两位数的年份)
    * %Y(四位数的年份)
    * %m(两位数的月份)
    * %d(两位数的天数)
    * 可以只格式化部分属性
    ```python
    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    # 可以只格式化部分属性
    datetime_str = datetime.datetime.strftime(datetime_replace, "%Y-%m-%d %H:%M:%S.%f")
    print(f"格式化后是:{datetime_str}", type(datetime_str))      # 2022-07-09 19:14:27.000123 
    # 格式化日期属性
    datetime_str_date = datetime.datetime.strftime(datetime_replace, "%Y-%m-%d")
    print(f"格式化日期的值为:{datetime_str_date}")      # 2022-07-09
    # 格式时间属性
    datetime_str_time = datetime.datetime.strftime(datetime_replace, "%H:%M:%S.%f")
    print(f"格式化时间的值为:{datetime_str_time}")      # 19:14:27.000123
    ```
    ![Python标准库datetime之datetime模块详解_datetime_13](https://img-blog.csdnimg.cn/4d9da4de3f464f1ca73e30f918406a0a.png)
    ## 附录、完整代码
    ```python
    # coding:utf-8
    import datetime
    # 日期时间对象
    # 日期时间对象是指具有日期(年月日)和时间(时分秒)双重属性的实例
    # 日期时间对象的类型为datetime.datetime
    # 日期时间对象常用的属性有年、月、日、时、分、秒、微秒等
    # 日期时间对象可以指定时间创建,也可以通过获取当前时间来创建
    # 日期时间对象指定时间创建时可按位置传参创建,也可关键字传参创建
    # 日期时间对象的创建函数有datetime.datetime(),datetime.datetime.now()、datetime.datetime.today()、datetime.datetime.utcnow()
    # 日期时间对象通过datetime.datetime()创建时的参数依次为:year,month,day,hour,minute,second,microsecond
    # 日期时间对象通过datetime.datetime.now()函数创建不需要参数
    # 日期时间对象通过datetime.datetime.today()函数创建不需要参数
    # 日期时间对象通过datetime.datetime.utcnow()函数创建不需要参数
    # 日期时间对象通过datetime.datetime()创建时至少应该包含年月日三个参数
    # 日期时间对象通过datetime.datetime()创建时的参数范围如下
    # {year[1~9999]、month[1~12]、day[1~31]、hour[0~23]、minute[0~59]、second[0~59]、microsecond[1~999999]}
    
    # 通过datetime.datetime.utcnow()创建
    datetime_zero = datetime.datetime.utcnow()
    # 通过datetime.datetime.today()函数创建
    datetime_first = datetime.datetime.today()
    # 通过datetime.datetime.now()创建
    datetime_second = datetime.datetime.now()
    # 通过datetime.datetime()函数指定日期时间、关键字传参创建
    datetime_three = datetime.datetime(year=1, month=1, day=1, hour=0, minute=0, second=0, microsecond=1)
    datetime_four = datetime.datetime(year=9999, month=12, day=31, hour=23, minute=59, second=59, microsecond=999999)
    # 通过datetime.datetime()函数指定日期时间、按位置传参创建,顺序不可变且参数值必须在规定的范围内
    datetime_five = datetime.datetime(9999, 12, 31, 23, 59, 59, 999999)
    print(datetime_zero, type(datetime_zero))       # 2022-07-09 18:12:43.486469 
    print(datetime_first, type(datetime_first))     # 2022-07-09 18:12:43.486469 
    print(datetime_second, type(datetime_second))   # 2022-07-09 18:12:43.486469 
    print(datetime_three, type(datetime_three))     # 0001-01-01 00:00:00.000001 
    print(datetime_four, type(datetime_four))       # 9999-12-31 23:59:59.999999 
    print(datetime_five, type(datetime_five))       # 9999-12-31 23:59:59.999999 
    # 查看datetime可以处理的最大的日期时间对象及最小的日期时间对象
    print(datetime.datetime.min)        # 0001-01-01 00:00:00
    print(datetime.datetime.max)        # 9999-12-31 23:59:59.999999
    
    """# 从日期时间对象中获取日期属性【年-月-日】"""
    new_time = datetime.datetime.date(datetime_first)
    print(new_time)
    print(type(new_time))
    """# 从日期时间对象中获取时间属性【时:分:秒:微秒】"""
    new_time = datetime.datetime.time(datetime_first)
    print(new_time)
    print(type(new_time))
    """# 从日期时间对象中获取年份"""
    datetime_year = datetime_four.year
    print(datetime_year, type(datetime_year))       # 9999 
    """# 从日期时间对象中获取月份"""
    datetime_month = datetime_four.month
    print(datetime_month, type(datetime_month))       # 12 
    """# 从日期时间对象中获取天"""
    datetime_day = datetime_four.day
    print(datetime_day, type(datetime_day))       # 31 
    """# 从日期时间对象中获取小时"""
    datetime_hour = datetime_four.hour
    print(datetime_hour, type(datetime_hour))       # 23 
    """# 从日期时间对象中获取分钟"""
    datetime_minute = datetime_four.minute
    print(datetime_minute, type(datetime_minute))       # 59 
    """# 从日期时间对象中获取秒数"""
    datetime_second = datetime_four.second
    print(datetime_second, type(datetime_second))       # 59 
    """# 从日期时间对象中获取微秒"""
    datetime_microsecond = datetime_four.microsecond
    print(datetime_microsecond, type(datetime_microsecond))       # 999999 
    """# datetime.datetime.date()函数的参数只能是datetime.datetime类型"""
    date_time = datetime.date(2022, 12, 26)
    """# 传入的参数不能为datetime.date类型"""
    """# TypeError: descriptor 'date' for 'datetime.datetime' objects doesn't apply to a 'datetime.date' object"""
    """# print(datetime.datetime.date(date_time))"""
    time_time = datetime.time(12, 2, 54, 999999)
    """# 传入的参数不能为datetime.time类型"""
    """# TypeError: descriptor 'date' for 'datetime.datetime' objects doesn't apply to a 'datetime.time' object"""
    """# print(datetime.datetime.date(time_time))"""
    """# 同理,datetime.datetime.time()函数传入的参数亦不能为datetime.date类型和datetime.time类型"""
    """# TypeError: descriptor 'time' for 'datetime.datetime' objects doesn't apply to a 'datetime.date' object"""
    """# print(datetime.datetime.time(date_time))"""
    """# TypeError: descriptor 'time' for 'datetime.datetime' objects doesn't apply to a 'datetime.time' object"""
    """# print(datetime.datetime.time(time_time))"""
    # 将日期时间对象转换为时间元组类型
    # 时间元组是指具有 年份、月份、日、小时、分钟、秒数、星期中的第N天、年中的第N天、夏令时标志的一个元组对象
    # 时间元组示例:(tm_year=2022, tm_mon=7, tm_mday=9, tm_hour=19, tm_min=14, tm_sec=27, tm_wday=5, tm_yday=190, tm_isdst=0)
    # 其中tm_wday的值从0开始,范围是:0~6,0为星期一,6为星期日;tm_isdst=0代表未启用夏令时
    UTCDateTime = datetime.datetime(year=2022, month=7, day=10, hour=19, minute=14, second=27, microsecond=1235)
    datetime_UTCTimeTuple = datetime.datetime.utctimetuple(UTCDateTime)
    print(datetime_UTCTimeTuple, type(datetime_UTCTimeTuple))  # 类型为:
    # 将日期时间对象转化为公元历开始计数的天数
    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    datetime_ordinal = datetime.datetime.toordinal(datetime_replace)
    print(datetime_ordinal, type(datetime_ordinal))     # 738345 
    print(datetime.datetime.fromordinal(1))     # 0001-01-02 00:00:00
    print(datetime.datetime.fromordinal(2))     # 0001-01-02 00:00:00
    # ctime()是将日期时间类型转换为一个日期之间值的字符串,示例如 Sat Jul  9 19:14:27 2022(2022年7月9日星期六)
    # ctime()返回值的第一部分的值代表星期几,第二部分的值代表月份,第三部分的值代表日,第四部分的值代表时间,第五部分的值代表年份
    print(datetime_replace)
    ctime_datetime = datetime.datetime.ctime(datetime_replace)
    print(ctime_datetime, type(ctime_datetime))
    
    # 将日期时间对象转换为时间戳
    datetime_timestamp = datetime.datetime.timestamp(datetime_replace)
    print(datetime_timestamp, type(datetime_timestamp))         # 1657365267.000123 
    # 将时间戳转换为日期时间对象
    print(datetime.datetime.fromtimestamp(datetime_timestamp))  # 2022-07-09 19:14:27.000123
    
    # 将日期时间对象转换为时间元组
    datetime_timetuple = datetime.datetime.timetuple(datetime_replace)
    print(datetime_timetuple, type(datetime_timetuple))
    # ISO标准日期时间格式
    print(datetime.datetime.utcoffset(UTCDateTime))
    # 将日期时间对象转换为ISO标准日期时间格式的字符串
    UTC_ISO_DateTime = datetime.datetime.isoformat(UTCDateTime)
    print(UTC_ISO_DateTime, type(UTC_ISO_DateTime))         # 2022-07-10T19:14:27.001235 
    # 将ISO标准日期时间格式的字符串转换为日期时间类型
    From_UTC_ISO_DateTime = datetime.datetime.fromisoformat('9999-12-31T23:59:59.999999')   # 
    print(From_UTC_ISO_DateTime, type(From_UTC_ISO_DateTime))
    # ISO标准的周内第N天
    # 值的范围是[1,7],1代表周一,7代表周日
    UTC_ISO_WeekDateTime = datetime.datetime.isoweekday(UTCDateTime)
    print(UTC_ISO_WeekDateTime, type(UTC_ISO_WeekDateTime))     # 7 
    # ISO标准的日历时间,Calendar中文释义为日历
    # 各个值的含义为(年份、周数、周内的第N天)即(year, week, weekday);
    # weekday的值为[1,7],1代表周一,7代表周日
    # 示例:datetime.IsoCalendarDate(year=2022, week=27, weekday=7)
    UTC_ISO_CalendarDateTime = datetime.datetime.isocalendar(UTCDateTime)
    print(UTC_ISO_CalendarDateTime, type(UTC_ISO_CalendarDateTime))
    # 将ISO标准日历格式的字符串转换为时间日期型
    From_UTC_ISO_CalendarDateTime = datetime.datetime.fromisocalendar(year=2022, week=27, day=7)
    print(From_UTC_ISO_CalendarDateTime)        # 2022-07-10 00:00:00
    print(type(From_UTC_ISO_CalendarDateTime))  # 
    
    # 日期时间替换函数replace()
    # replace()可以只替换日期时间属性的某一项
    # replace()函数的第一个参数必传
    # replace()函数的第一个参数是一个日期时间类型(datetime.datetime)的对象
    # 按关键字传参替换
    # 按位置传参体换
    datetime_replace = datetime.datetime(year=2022, month=7, day=9, hour=19, minute=14, second=27, microsecond=123)
    # 初始值
    print(f"datetime_replace的原值为:{datetime_replace}", f"类型是:{type(datetime_replace)}")
    # 不传参数
    print(datetime.datetime.replace(datetime_replace))    # 2022-07-09 19:14:27.000123
    # 只替换年份
    print(datetime.datetime.replace(datetime_replace, 2019))    # 2019-07-09 19:14:27.000123
    print(datetime.datetime.replace(datetime_replace, year=2019))   # 2019-07-09 19:14:27.000123
    # 只替换月份, 替换其他参数同理
    print(datetime.datetime.replace(datetime_replace, month=12))            # 2022-12-09 19:14:27.000123
    print(datetime.datetime.replace(datetime_replace, datetime_replace.year, 12))   # 2022-12-09 19:14:27.000123
    # 替换其他参数同理
    print(datetime.datetime.replace(datetime_replace, year=2019, month=12, day=31, hour=15,
                                   minute=13, second=15, microsecond=9999))    # 2019-12-31 15:13:15.00999
    # 日期时间对象格式化strftime()
    # 日期时间对象格式化常用的格式如下:
    ""
    %H(两位数的小时)、%M(两位数的分钟)、%S(两位数的秒)、%f(6位数的微秒)、%h(简写的月份名,一般为英文简写)
    %y(两位数的年份)、%Y(四位数的年份)、%m(两位数的月份)、%d(两位数的天数)
    """
    # 可以只格式化部分属性
    datetime_str = datetime.datetime.strftime(datetime_replace, "%Y-%m-%d %H:%M:%S.%f")
    print(f"格式化后是:{datetime_str}", type(datetime_str))      # 2022-07-09 19:14:27.000123 
    # 格式化日期属性
    datetime_str_date = datetime.datetime.strftime(datetime_replace, "%Y-%m-%d")
    print(f"格式化日期的值为:{datetime_str_date}")      # 2022-07-09
    # 格式时间属性
    datetime_str_time = datetime.datetime.strftime(datetime_replace, "%H:%M:%S.%f")
    print(f"格式化时间的值为:{datetime_str_time}")      # 19:14:27.000123
    ```
    本文内容来源于互联网,如有侵权请联系删除。
    作者最新文章
    编程开发 Python
    相关文章 更多
    Python安装后怎么打开:使用IDLE或命令行启动解释器
    Python安装后怎么打开:使用IDLE或命令行启动解释器

    刚在Windows安装好Python却不知道如何启动?本文详细演示如何通过开始菜单找到并打开IDLE集成开发环境,以及如何在PowerShell或命令提示符中使用python和py命令启动交互式解释器、运行.py脚本文件。包含退出解释器的方法及常见启动问题排查,帮助初学者快速验证安装成功并开始编写代码。

    Windows系统Python安装教程:下载、勾选PATH及环境变量配置
    Windows系统Python安装教程:下载、勾选PATH及环境变量配置

    针对Windows初学者的Python安装实战指南。详细讲解如何从Python官网下载匹配架构的安装包,重点演示安装首屏勾选“Add python.exe to PATH”的关键操作,并提供使用python --version和py命令验证环境变量的具体步骤,帮助新手快速搭建开发环境并排查路径问题。

    麒麟OS如何查看Python进程的运行状态
    麒麟OS如何查看Python进程的运行状态

    要想确认麒麟OS中Python程序的运行状态以及资源占用情况,我们可以这样做:用ps -ef | grep python来筛选进程;通过top命令,按P键排序查看实时负载;使用pgrep -f "script.py"精准获取PID;借助lsof -p PID验证文件打开状态。另外,还可以结合syst

    Python在Debian上如何配置SSL证书
    Python在Debian上如何配置SSL证书

    在Debian系统上配置SSL证书通常涉及以下几个步骤:安装Web服务器:首先,你需要一个Web服务器,比如Apache或Nginx。这里以Apache为例。sudo apt updatesudo apt install apache2获取SSL证书:你可以从Let’s Encrypt免费获取SSL

    统信UOS怎么安装Python开发环境
    统信UOS怎么安装Python开发环境

    要想让Python项目在统信UOS上正常运行,得先安装python3、python3-pip、python3-venv、python3-dev以及build-essential等组件。具体操作就是执行sudo apt install命令来一步到位完成安装,同时别忘了配置清华镜像源来给pip加速哦。在

    纯Python方案实现中英文全文搜索
    纯Python方案实现中英文全文搜索

    在互联网上的各类网站中,无论大小,基本上都会有一个搜索框,用来给用户对内容进行搜索,小到站点搜索,大到搜索引擎搜索。从简单的来说,搜索功能确实很简单,一个简单的select语句就可以实现数据的搜索。而从复杂的来看,无论是搜索的精度还是搜索的效率,都是有很深的研究范围的。对于简单的搜索功能来说,一个s

    Mac如何取消通过Python脚本运行的关机程序
    Mac如何取消通过Python脚本运行的关机程序

    立即在终端输入sudo shutdown -c取消倒计时关机,成功后显示“Shutdown cancelled”;若存在pmset重复任务,需再执行sudo pmset repeat cancel清除。Mac因Python脚本执行了os.system("sudo shutdown -h +10")或

    Pythonasyncio异步并发与多固定出口IP调度实战
    Pythonasyncio异步并发与多固定出口IP调度实战

    之前写过一篇同步场景下用 Python 管理多个固定出口 IP 的实践(ExitPool + requests/httpx),覆盖了健康检查、故障转移和连接池复用。但在实际业务中,越来越多的场景用 asyncio 做高并发采集或批量接口调用——异步事件循环下多出口的管理方式和同步场景完全不同:单线程

    Python在静态出口IP产品中的实战:从地址漂移巡检到多IP故障切换
    Python在静态出口IP产品中的实战:从地址漂移巡检到多IP故障切换

    写在前面:为什么静态出口 IP 不是"买了就行"不少团队在引入静态出口 IP 产品时,第一反应往往是:“地址配上去,这事就算完了。”可真到了真实业务里,静态出口 IP 真正能体现价值的地方,往往不在分配这一步,而在分配之后怎么管:地址有没有漂移,质量是否达标,某一条线路突然不可用时怎么切换,连接层又

    using namespace 使用中遇到的问题怎么解决
    using namespace 使用中遇到的问题怎么解决

    命名空间的基本概念与常见引入问题在C++等编程语言中,命名空间(namespace)是一种将代码标识符(如变量、函数、类名)封装在特定名称下的机制,其主要目的是避免命名冲突,尤其是在大型项目或使用多个第三方库时。使用“using namespace”指令可以将指定命名空间中的所有名称引入当前作用域,

    查看更多
    精品专题 更多
    装机必备
    装机必备

    正软商城装机必备专区,精选办公、浏览器、安全防护、影音播放、压缩解压、设计创作和系统工具等电脑常用正版软件,帮助用户快速完成新电脑软件配置。

    Windows
    Windows

    正软商城Windows软件专区,汇集适用于Windows电脑的办公、设计、安全防护、影音播放、开发工具和系统优化软件,提供软件介绍、系统要求、正版授权及购买下载服务。

    macOS软件
    macOS软件

    正软商城macOS软件专区,精选适用于Mac电脑的办公、设计、影音、效率、开发和系统工具,提供软件功能介绍、macOS兼容版本、正版授权及购买下载服务。

    Mac软件 更多
    灵活计算器
    灵活计算器
    macOS/iOS/Android

    灵活计算器是一款笔记式算数应用,支持实时计算、动态关联和云端同步功能。记录、整理和输出之间的过渡会更自然,适合长期写作、做笔记或持续沉淀个人内容。

    赤友清理大师
    赤友清理大师
    macOS

    赤友清理大师是一款为 Mac 设计的智能清理优化工具,可精准扫描垃圾、大文件、重复文件等,释放磁盘空间。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    极度公式
    极度公式
    Windows/macOS/Linux

    极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    WINDOWS 更多
    Windows 10
    Windows 10
    Windows

    Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。

    极度公式
    极度公式
    Windows/macOS/Linux

    极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    密码键盘
    密码键盘
    Windows/macOS/iOS/Android

    密码键盘是一款兼具安全性与便捷性的高效密码管理器。日常使用里的持续防护和信息管理会更突出,适合把安全控制放进长期使用流程中的场景。