如何使用python获取当前时间[重复]
Posted
技术标签:
【中文标题】如何使用python获取当前时间[重复]【英文标题】:How to get the current time with python [duplicate] 【发布时间】:2021-01-28 03:15:48 【问题描述】:如何在python中获取当前时间?我见过人们获取日期和时间,但我只想要时间作为字符串。
例如,如果当前时间是 8:30,命令应该输出: “8:30”。
另外,你如何找到星期几>
例如,如果是星期二,则输出应为: 2.
【问题讨论】:
您查看过datetime
module 的文档吗?
这能回答你的问题吗? How to get the current time in Python
【参考方案1】:
from datetime import datetime
print(datetime.now().strftime("%H:%M"))
会返回这个:
13:29
也要获得秒数:
print(datetime.now().strftime("%H:%M:%S"))
【讨论】:
非常感谢,我正在用 python 制作一个不和谐的机器人,并正在编写一个函数来提醒人们去上课。 没问题!总是乐于提供帮助。【参考方案2】:你可以使用
import datetime
my_time = datetime.datetime.now().time()
【讨论】:
以上是关于如何使用python获取当前时间[重复]的主要内容,如果未能解决你的问题,请参考以下文章