python中怎么获取当前时间的时分秒
时间: 2024-05-02 21:23:42 浏览: 56
Python获取当前时间的方法
您好,要获取当前时间的时分秒,可以使用Python中内置的time模块和datetime模块。以下是两种不同的方法:
方法1:
```python
import time
# 获取当前时间戳
timestamp = time.time()
# 转换为struct_time结构体
time_struct = time.localtime(timestamp)
# 获取小时、分钟、秒
hours = time_struct.tm_hour
minutes = time_struct.tm_min
seconds = time_struct.tm_sec
# 打印结果
print(hours, minutes, seconds)
```
方法2:
```python
import datetime
# 获取当前时间
now = datetime.datetime.now()
# 获取小时、分钟、秒
hours = now.hour
minutes = now.minute
seconds = now.second
# 打印结果
print(hours, minutes, seconds)
```
希望能对您有所帮助,如有疑问请随时提出。
阅读全文