[Tutor] Writing program: To Do List in Python 3.0

Rafael Knuth rafael.knuth at gmail.com
Wed Sep 25 19:42:12 CEST 2013


Hej there,

I want to write a simple program (To Do List) that stores the input
data (action items on To Do List). Currently I can only input items
but the program I wrote doesn't store them.

Can you help?

Thanks,

Rafael

Here's the code I wrote so far:

print("This is my to do list")

Monday = input("Monday ")
Tuesday = input("Tuesday ")
Wednesday = input("Wednesday ")
Thursday = input("Thursday ")
Friday = input("Friday ")
Saturday = input("Saturday ")
Sunday = input("Sunday ")

print("So, here are your plans for:" +
"\nMonday " + Monday +
"\nTuesday " + Tuesday +
"\nWednesday " + Wednesday +
"\nThursday " + Thursday +
"\nFriday " + Friday +
"\nSaturday " + Saturday +
"\nSunday " + Sunday)


More information about the Tutor mailing list