在 Python 中获取当前日期

Rayven Esplanada 2021年7月20日 2021年3月21日
在 Python 中获取当前日期

本教程演示了如何在 Python 中获取当前日期。

在 Python 中使用 datetime 模块获取当前日期

datetime 模块具有专用于 Python 中日期和时间操作的实用程序功能。在模块内,它具有一个具有相同名称的对象,该对象具有函数 today(),该函数以默认的日期时间格式返回当前日期和时间。

例如,导入 datetime 模块并直接打印 datetime.today() 的输出。

from datetime import datetime

print(datetime.today())

输出:

2021-03-09 15:05:55.020360

要修改日期时间的默认格式,请使用 strftime 格式,并调用 datetime 模块中内置的 strftime() 方法。

例如,要显示不带时间的当前日期,其格式为%Y-%m-%d

from datetime import datetime

print(datetime.today().strftime('%Y-%m-%d'))

输出:

2021-03-09

要包括时间但不包括秒和毫秒,其格式应为%Y-%m-%d %H-%M

from datetime import datetime

print(datetime.today().strftime('%Y-%m-%d %H:%M'))

输出:

2021-03-09 15:05

另一种格式是包括星期几。在此示例中,我们将使用月份的实际名称。

from datetime import datetime

print(datetime.today().strftime('%A, %B %d, %Y %H:%M:%S'))

输出:

Tuesday, March 09, 2021 15:05:55

总之,可以使用函数 today() 来使用 datetime 模块获取当前日期。要广泛修改默认日期格式,可以使用 strftime 函数遵循和应用 strftime 格式。

Rayven Esplanada avatar Rayven Esplanada avatar

Skilled in Python, Java, Spring Boot, AngularJS, and Agile Methodologies. Strong engineering professional with a passion for development and always seeking opportunities for personal and career growth. A Technical Writer writing about comprehensive how-to articles, environment set-ups, and technical walkthroughs. Specializes in writing Python, Java, Spring, and SQL articles.

LinkedIn

相关文章 - Python DateTime