python 输出当前时间
时间: 2024-01-16 20:03:40 浏览: 76
Python可以使用多种方式输出当前时间,以下是几种常用的方法:
1. 使用datetime模块获取当前时间并输出,代码如下:
```
import datetime
current_time = datetime.datetime.now()
print("current_time: " + str(current_time))
```
2. 使用time模块获取当前时间并按指定格式输出,代码如下:
```
import time
print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time())))
```
3. 使用time模块获取当前时间戳并输出,代码如下:
```
import time
print(time.time())
```
相关问题
python输出当前时间
可以使用Python内置的datetime模块来输出当前时间。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
输出结果类似于:
```
当前时间为: 2022-01-01 12:34:56.789012
```
用Python输出当前时间
你好!当前时间可以使用Python中的datetime模块来输出。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
希望能够帮到你!
阅读全文