Answer:
#Create an array for week
week = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday","Sunday"]
#Create a varable index and use index to loop through week(array)
for index in week:
#if the index is on Saturady or Sunday then, print freedom
if index == "Saturday" or index == "Sunday":
print(index + " Freedom")
#else just pint out the other days
else:
print(index)