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