python 获取时分秒
时间: 2023-08-12 18:13:06 浏览: 103
你可以使用 Python 的 datetime 模块来获取当前的时分秒。
下面是一个简单的示例代码:
```python
import datetime
# 获取当前时间
now = datetime.datetime.now()
# 提取时分秒
hour = now.hour
minute = now.minute
second = now.second
print(f"当前时间:{hour}时{minute}分{second}秒")
```
该代码将打印当前时间的小时、分钟和秒数。
相关问题
python怎么获取时分秒
你可以使用Python中的datetime模块来获取当前的时分秒,示例代码如下:
```python
import datetime
now = datetime.datetime.now()
hour = now.hour
minute = now.minute
second = now.second
print("当前时间为:{}:{}:{}".format(hour, minute, second))
```
这段代码会输出当前的时分秒。
python datetime获取时分秒
Python中可以使用datetime模块获取当前时间的时分秒。具体方法如下:
```python
import datetime
now = datetime.datetime.now() # 获取当前时间
hour = now.hour # 获取当前小时数
minute = now.minute # 获取当前分钟数
second = now.second # 获取当前秒数
print(hour, minute, second) # 输出时分秒
```
以上代码会输出当前时间的时分秒。如果需要获取指定时间的时分秒,可以使用datetime.datetime(year, month, day, hour, minute, second)方法创建一个datetime对象,然后通过该对象获取时分秒。
阅读全文