import datetime now = datetime.datetime.now() print(now.strftime("%A"))
import datetime x = datetime.datetime.now() print(x.strftime("%A")) #prints the name of today's day