python怎么表示年月日时分秒
时间: 2023-05-30 07:04:45 浏览: 203
用python把儒略日转年月日时分秒程序
Python中可以使用datetime模块来表示年月日时分秒。具体实现如下:
```python
import datetime
# 获取当前时间
now = datetime.datetime.now()
# 打印当前时间
print(now)
# 获取年份
year = now.year
print(year)
# 获取月份
month = now.month
print(month)
# 获取日期
day = now.day
print(day)
# 获取小时
hour = now.hour
print(hour)
# 获取分钟
minute = now.minute
print(minute)
# 获取秒数
second = now.second
print(second)
```
输出结果:
```
2021-09-02 15:35:32.950291
2021
9
2
15
35
32
```
在datetime模块中,可以使用datetime类来表示年月日时分秒,可以通过该类的year、month、day、hour、minute和second属性来获取对应的值。
阅读全文