python 获取时分秒
时间: 2023-10-16 12:17:40 浏览: 115
python将时分秒转换成秒的实例
3星 · 编辑精心推荐
可以使用 Python 的 datetime 模块来获取当前的时分秒,示例代码如下:
```python
import datetime
now = datetime.datetime.now()
hour = now.hour
minute = now.minute
second = now.second
print(f"现在的时间是 {hour} 点 {minute} 分 {second} 秒")
```
输出结果类似于:
```
现在的时间是 10 点 30 分 15 秒
```
阅读全文