Im building a program in which you can enter the tasks you have to do per day. Now I'm trying to make the program print a list of all the tasks when you're done adding them. This is the code I have:
for x in range(0,len(tuesday)):
print(" -",x)
tuesday is an array that contains all the tasks for that day. However, this code doesn't work; it just prints some numbers. How can I make the for loop print all the tasks from the tuesday array?