python输出时间
时间: 2024-09-16 08:05:01 浏览: 44
python计算时间差的方法
在Python中,你可以使用内置模块`datetime`来处理时间和日期。下面是一些基本的时间输出方法:
1. 获取当前时间:使用`datetime.datetime.now()`函数可以获取当前的日期和时间。
```python
from datetime import datetime
current_time = datetime.now()
print("当前时间为:", current_time)
```
2. 格式化输出:`strftime`函数用于将日期时间对象格式化为字符串,可以根据需要指定特定的格式。
```python
formatted_time = current_time.strftime("%Y-%m-%d %H:%M:%S") # 输出格式如"2023-04-01 12:34:56"
print("格式化后的时间:", formatted_time)
```
3. 输出小时、分钟等部分单独:`time()`函数返回当前系统时间的时间部分,`hour`, `minute`, `second`属性分别对应小时、分钟和秒数。
```python
hours, minutes, seconds = current_time.hour, current_time.minute, current_time.second
print(f"当前小时: {hours}, 分钟: {minutes}, 秒: {seconds}")
```
阅读全文