python 获取当前时间
时间: 2023-06-22 15:46:52 浏览: 47
Python获取当前时间的方法
可以使用 Python 内置的 datetime 模块来获取当前时间。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
输出结果类似于:
```
当前时间: 2021-10-14 15:50:23.123456
```
你也可以使用 strftime() 方法来格式化时间输出。例如:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:
```
当前时间: 2021-10-14 15:50:23
```
阅读全文