如何在 Python 中获取当前时间?
要在 Python 中获取当前时间,可以使用 datetime 模块。这个模块提供了许多函数和类来处理日期和时间。以下是获取当前时间的方法:
datetime
from datetime import datetime current_time = datetime.now().time() print("当前时间:", current_time)
这将以 HH:MM:SS.微秒 的格式输出当前时间。如果只需要以 HH:MM:SS 的格式输出当前时间,可以使用 .strftime 方法来格式化时间字符串:
HH:MM:SS.微秒
HH:MM:SS
.strftime
current_time_str = datetime.now().strftime('%H:%M:%S') print("当前时间:", current_time_str)
这样就可以得到当前时间的 HH:MM:SS 格式的字符串输出。