python datetime 模块提取时间
时间: 2023-09-13 10:03:25 浏览: 104
详解python datetime模块
5星 · 资源好评率100%
可以使用datetime模块中的strftime()方法来提取时间,下面是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
time_string = now.strftime("%H:%M:%S")
print("当前时间为:", time_string)
```
输出结果为:
```
当前时间为: 21:20:30
```
在上面的代码中,我们使用了datetime模块中的now()方法来获取当前时间,然后使用strftime()方法来将时间转换成字符串格式,并指定格式化字符串"%H:%M:%S"来提取时间。"%H"表示小时,"%M"表示分钟,"%S"表示秒。
阅读全文