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