如何用python输出时间
时间: 2023-03-23 13:00:14 浏览: 92
Python获取当前时间的方法
您好,以下是使用Python输出时间的几种方法:
1. 使用time模块:
```python
import time
print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
```
2. 使用datetime模块:
```python
import datetime
print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
```
3. 使用arrow模块:
```python
import arrow
print(arrow.now().format("YYYY-MM-DD HH:mm:ss"))
```
以上是三种常用的Python输出时间的方法,可以根据自己的需要选择适合自己的方法。希望能对您有所帮助。
阅读全文