Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Today (date)

  • date
  • today
import datetime

now = datetime.datetime.now()
print(now.date())
print(type(now.date()))


today = datetime.date.today()
print(today)
print(type(today))
2023-04-17
<class 'datetime.date'>
2023-04-17
<class 'datetime.date'>