blob: 060660b50cf284581d9e99e4c0a9679258c078f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#drop user into a shell
print("enter one of the following commands: list, toggle, change date, view")
line = input(": ")
while line != "close":
if line == "list":
print("you said to list :)")
elif line == "toggle":
print("You said toggle :(")
elif line == "change date":
print("CHANGE DATEEE")
elif line == "view":
print("look at me (view)")
else:
print("Invalid command :(")
line = input(": ")
print("byee(closing file)")
|