在 Python 中,有多种方法来检索当前时间。一种方便的选择是利用 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中文网其他相关文章!