使用三种获取时间的方法输出当前系统时间python
时间: 2024-10-14 07:08:00 浏览: 57
Python获取当前时间的方法
在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())
print("Current time:", current_time)
```
3. **os模块**(仅适用于Unix-like系统,如Linux、Mac):
```python
import os
current_time = os.uname().utsname[-1]
print("Current time (Unix timestamp):", int(current_time))
```
这第三种方法返回的是操作系统的时间戳,需要进一步转换。
阅读全文