用python打印当前时间精确到分钟怎么写?
时间: 2023-12-05 19:03:57 浏览: 96
Python获取当前时间的方法
您可以使用Python内置库中的datetime模块来获取当前时间并将其格式化为所需的输出。下面是一个示例代码:
``` python
from datetime import datetime
# 获取当前时间
now = datetime.now()
# 将时间格式化为字符串,精确到分钟
current_time = now.strftime("%Y-%m-%d %H:%M")
# 打印当前时间
print("Current Time =", current_time)
```
上述代码输出的结果类似于:`Current Time = 2022-03-01 11:25`,即当前时间精确到分钟。
阅读全文