python获取当前时间精确到秒
时间: 2023-09-07 17:15:54 浏览: 189
Python获取当前时间的方法
要在Python中获取当前时间精确到秒,你可以使用`datetime`模块和`strftime`函数。下面是一个示例代码:
```python
from datetime import datetime
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(current_time)
```
这段代码将打印出当前时间,格式为"年-月-日 时:分:秒"。你可以根据需要调整时间的格式。
阅读全文