Python怎么获取当前时间
时间: 2023-11-05 07:54:37 浏览: 94
获取当前时间的方法有多种,可以使用datetime模块或者time模块来实现。
使用datetime模块的方法如下:
```python
import datetime
current_time = datetime.datetime.now()
print("当前时间:", str(current_time))
```
使用time模块的方法如下:
```python
import time
current_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
print("当前时间:", current_time)
```
阅读全文