import time
import datetime
date = time.strftime("%A")
week = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"];
weekend = ["Saturday", "Sunday"];
if weekend == date:
print ("Today is: " + date)
/I want to make schedule. So when a day is equal with one of my days saved in variable it will print out my schedule for that date. As you can see I dont have the schedules yet. I just need ot know how to save current day as string/