如何在python中分别从Calendar.get_date中获取月、日和年?

How to get the month, day and year from Calendar.get_date separately in python?

我需要单独的年月日,或者只是将其转换为日期时间,因为我需要另一种格式,例如日历 get_date 方法中的 yyy-month-dd。

cal = Calendar(ventanaEvento, selectmode="day", year=2022, month=1, date=1)
cal.place(x=450, y=100)
print(cal.get_date())

打印:1/19/22 月、日、年。

这只是 returns 我不需要的字符串,因为我需要单独的数字或不同的格式:yyyy-mm-dd。

提前致谢。

from datetime import datetime
date = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
print(date)

Y-year, m-month, d-day, H-hours, M-minutes, S-seconds