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

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

Susan Sarandon
发布: 2024-11-23 07:57:11
原创
1047 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板