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

如何在 Python 中获取并格式化当前时间?

Patricia Arquette
Patricia Arquette原创
2024-11-24 02:35:10721浏览

How Can I Get and Format the Current Time in Python?

在 Python 中检索当前时间

需要在 Python 脚本中访问当前时间?以下是实现此目的的方法:

使用 datetime 模块

推荐且最全面的方法包括导入 datetime 模块:

 >>> import datetime

检索日期和时间

获取日期和时间,使用 datetime.datetime.now() 方法:

 >>> now = datetime.datetime.now()
 >>> print(now)
 >>> # Output: 
 >>>  2023-03-08 10:15:30.123456

仅检索时间

如果只有时间需要的话,使用 now.time()方法:

 >>> now.time()
 >>> # Output: 
 >>>  10:15:30.123456

自定义显示

您可以通过访问日期时间对象中的各个字段来自定义输出格式,例如年、月、日、小时、分钟、秒。

 >>> print("Year:", now.year)
 >>> print("Month:", now.month)
 >>> print("Day:", now.day)
 >>> print("Hour:", now.hour)
 >>> print("Minute:", now.minute)
 >>> print("Second:", now.second)

简化导入

为了方便起见,您可以直接从 datetime 模块导入 datetime 对象:

 >>> from datetime import datetime

这样就不需要在每个之前添加前缀 datetime.日期时间方法调用。

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

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