python获取当前时间
时间: 2023-10-14 08:27:07 浏览: 45
可以使用 Python 中的 datetime 模块来获取当前时间。以下是获取当前时间的示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
输出结果类似于:
```
当前时间: 2021-08-19 14:33:01.123456
```
其中,now() 函数返回当前的日期和时间,包括毫秒。你可以根据需要使用 strftime() 函数来格式化输出时间。
相关问题
Python获取当前时间
可以使用Python的内置模块datetime来获取当前时间。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
输出结果会类似于:
```
当前时间: 2021-07-05 16:30:00.123456
```
其中,now()方法返回一个datetime对象,包含当前的日期和时间信息。你也可以通过datetime对象的属性来获取年、月、日、时、分、秒等具体时间信息。
python 获取当前时间
以下是两种获取当前时间的方法:
1. 使用datetime模块
```python
from datetime import datetime
current_time = datetime.now()
print("Current time: ", current_time)
```
2. 使用time模块
```python
import time
current_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
print("Current time: ", current_time)
```
阅读全文