This Python DateTime tutorial will teach you how to get date from DateTime. You can find the date from DateTime using the following code:
# Import the datetime module
import datetime
# Get the current date and time
date_time = datetime.datetime.now()
# Get the date from the date and time
date = date_time.date()
# Display the date
print("Current date:", str(date))

