python中获取当前时间年月日时分秒
时间: 2023-11-06 13:49:18 浏览: 177
python获取当前日期和时间的方法
5星 · 资源好评率100%
在Python中,你可以使用datetime模块来获取当前时间的年月日时分秒。你可以使用datetime.datetime.today()函数来获取当前的日期和时间。然后,你可以使用.today()函数返回的datetime对象的属性来获取年、月、日、时、分、秒的值。以下是示例代码:
```python
import datetime
today = datetime.datetime.today()
currentYear = today.year
currentMonth = today.month
currentDay = today.day
currentHour = today.hour
currentMinute = today.minute
currentSecond = today.second
```
通过上述代码,你可以得到当前时间的年、月、日、时、分、秒的数值。
阅读全文