坑爹啊,记忆力不行,老是记不住,都用了这么久了,记在这里以后来翻。
Directive
Meaning
Notes
%a |
Locale’s abbreviated weekdayname. |
|
%A |
Locale’s full weekday name. |
|
%b |
Locale’s abbreviated monthname. |
|
%B |
Locale’s full month name. |
|
%c |
Locale’s appropriate date andtime representation. |
|
%d |
Day of the month as a decimalnumber [01,31]. |
|
%f |
Microsecond as a decimalnumber [0,999999], zero-paddedon the left |
(1) |
%H |
Hour (24-hour clock) as adecimal number [00,23]. |
|
%I |
Hour (12-hour clock) as adecimal number [01,12]. |
|
%j |
Day of the year as a decimalnumber [001,366]. |
|
%m |
Month as a decimal number[01,12]. |
|
%M |
Minute as a decimal number[00,59]. |
|
%p |
Locale’s equivalent of eitherAM or PM. |
(2) |
%S |
Second as a decimal number[00,61]. |
(3) |
%U |
Week number of the year(Sunday as the first day ofthe week) as a decimal number[00,53]. All days in a newyear preceding the firstSunday are considered to be inweek 0. |
(4) |
%w |
Weekday as a decimal number[0(Sunday),6]. |
|
%W |
Week number of the year(Monday as the first day ofthe week) as a decimal number[00,53]. All days in a newyear preceding the firstMonday are considered to be inweek 0. |
(4) |
%x |
Locale’s appropriate daterepresentation. |
|
%X |
Locale’s appropriate timerepresentation. |
|
%y |
Year without century as adecimal number [00,99]. |
|
%Y |
Year with century as a decimalnumber. |
|
%z |
UTC offset in the form +HHMMor -HHMM (empty string if thethe object is naive). |
(5) |
%Z |
Time zone name (empty stringif the object is naive). |
|
%% |
A literal '%' character. |
|
http://docs.python.org/library/datetime.html#strftime-strptime-behavior
分享到:
相关推荐
总的来说,Python的`datetime`模块提供了丰富的功能来处理日期和时间,包括获取当前日期时间、格式化输出、以及计算日期差。无论是简单的日常操作还是复杂的日期计算,`datetime`都能提供强大的支持。了解并熟练掌握...
5. `strftime()`方法用于将`datetime`对象格式化为字符串,可以根据提供的格式化字符串进行定制。 6. `strptime()`函数用于将符合指定格式的字符串解析为`datetime`对象。 7. `timetuple()`方法将`datetime`对象转换...
您可能感兴趣的文章:python日期时间转为字符串或者格式化输出的实例python中日期和时间格式化输出的方法小结Python 时间操作例子和时间格式化参数小结Python简单格式化时间的方法【strftime函数】python 时间戳与...
输出这些带有时区信息的datetime对象时,可以使用`strftime()`方法以ISO 8601格式(例如`'%Y-%m-%dT%H:%M:%S.%f%z'`)或者`isoformat()`方法进行格式化。注意,`%z`会提供时区的UTC偏移,而`%Z`则会尝试提供时区的...
在Python编程中,`datetime`模块是一个非常重要的部分,它为处理日期和时间提供了丰富的功能。相较于`time`模块,`datetime`模块提供了更加直观且强大的接口,使得开发者能够更加方便地进行日期和时间的计算与操作。...
Python的datetime模块是用于处理日期和时间的工具,其中包含了多种类,如date、time、datetime和timedelta。本篇文章将详细讲解timedelta类及其在测量程序编制中的应用。 timedelta类是datetime模块中用于表示两个...
此外,还可以进行日期的加减运算、比较以及格式化输出,如`print(today.strftime("%Y-%m-%d"))`将日期转换为"年-月-日"的格式。 接下来是SQL数据库。Python有多种库可以与SQL数据库进行交互,如SQLite、MySQL、...
在Python中,通常使用`datetime`模块的`strftime`方法来格式化日期。例如: ```python from datetime import datetime date = datetime.now() formatted_date = date.strftime("%Y-%m-%d %H:%M:%S") print...
- **str转date**:如果有一个日期字符串,可以使用`datetime.strptime()`函数解析成`date`对象,格式化字符串需要与输入的日期字符串匹配: ```python from datetime import datetime date_str = "2023-03-01" ...
在Python中进行日期和时间格式化输出是一个常用且非常重要的功能,它允许用户按照特定的格式展示日期和时间数据。在Python的标准库中,`datetime`模块提供了很多处理日期和时间相关的功能。本小结将主要介绍`...
Python中的datetime模块是处理日期和时间的标准库,它提供了对日期和时间的丰富支持,可以方便地进行日期和时间的解析、格式化、运算等操作。其中,strptime函数是datetime模块中用于将字符串解析成datetime对象的一...
5. **format化代码**:时间格式化参数表中包含了一系列符号,例如 `%y` 表示两位数的年份,`%Y` 表示四位数的年份,`%m` 表示月份,`%d` 表示月份中的天数,`%H` 和 `%M` 分别代表小时和分钟,`%S` 表示秒,还有 `%p...
本篇将深入探讨如何在Python中格式化日期时间并将其作为参数传递给MySQL查询。首先,理解MySQL中的日期时间格式至关重要。在示例中,`start_time` 字段存储的格式是 `2018-03-21 10:55:32`,这是一种标准的`YYYY-MM-...
Python 的 datetime 模块是处理日期和时间的重要工具,它为程序员提供了丰富的功能,包括日期的计算、时间的格式化以及与时间戳的转换等。在这个主题中,我们将深入探讨 datetime 模块的核心概念和常见用法。 1. **...
Python的`datetime`模块是处理日期和时间的核心库,提供了丰富的功能,包括创建、操作和格式化日期和时间对象。在本篇文章中,我们将深入探讨`datetime`包中的关键函数,以及如何使用它们进行日期和时间的操作。 ...
本文详细介绍了 Python `datetime` 模块的基本使用方法,包括如何获取当前日期时间、格式化日期时间、进行日期时间的加减操作、替换日期时间的部分字段以及处理时区问题。这些方法可以帮助开发者更加灵活地处理日期...
本文将深入探讨这个模块中的几个关键概念,包括datetime类、timedelta类,以及strftime和strptime这两个重要的格式化函数。 1. **datetime类**: datetime类用于表示日期和时间的组合,其包含年(year)、月...