首页  >  文章  >  后端开发  >  如何在Python中获取当前时间?

如何在Python中获取当前时间?

Susan Sarandon
Susan Sarandon原创
2024-11-23 07:57:11980浏览

How to Get the Current Time in Python?

如何在 Python 中获取当前时间

在 Python 中,有多种方法来检索当前时间。一种方便的选择是利用 datetime 模块。

使用 datetime

# Import the datetime module
import datetime

# Get the current datetime object
now = datetime.datetime.now()

# Print the datetime object
print(now)  # Output: datetime.datetime(2023, 3, 8, 14, 35, 22, 123456)

获取时钟时间

要仅获取没有日期的时钟时间,您可以使用:

# Get the current clock time
current_time = now.time()

# Print the clock time
print(current_time)  # Output: time(14, 35, 22, 123456)

简化导入

为了简化您的代码,您可以直接从 datetime 模块导入 datetime 对象:

from datetime import datetime

# Get the current datetime object
now = datetime.now()

这种方法消除了使用 datetime 的需要。调用 datetime 模块函数时的前缀。

以上是如何在Python中获取当前时间?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn