m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
242 B

6 months ago
  1. """For when pip wants to check the date or time.
  2. """
  3. import datetime
  4. def today_is_later_than(year: int, month: int, day: int) -> bool:
  5. today = datetime.date.today()
  6. given = datetime.date(year, month, day)
  7. return today > given