class datetime.date(year, month, day)
All arguments are required. Arguments may be integers, in the following ranges:
MINYEAR <= year <= MAXYEAR1 <= month <= 121 <= day <= number of days in the given month and year
If an argument outside those ranges is given, ValueError is raised.
Please login to continue.