This Python DateTime tutorial will teach you how to compare DateTime in Python. You can use the following code for the comparison.
# Import the datetime module import datetime # Get the current date and time date_time = datetime.datetime.now() # Get the current date and time date_time_2 = datetime.datetime.now() # Compare the date and time if date_time == date_time_2: print("The date and time are equal") else: print("The date and time are not equal")