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