- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.py
More file actions
Latest commit
47 lines (37 loc) · 1005 Bytes
/
Copy pathstack.py
File metadata and controls
47 lines (37 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
stack= []
defpushit():
stack.append(raw_input('Enter new string: '))
defpopit():
iflen(stack) ==0:
print'Cannot pop from an empty stack!'
else:
print'Removed [', stack.pop(), ']'
defviewstack():
printstr(stack)
defshowmenu():
prompt="""
p(U)sh
p(O)p
(V)iew
(Q)uit
Enter choice: """
done=0
whilenotdone:
chosen=0
whilenotchosen:
try:
choice=raw_input(prompt)[0]
except (IndexError, EOFError, KeyboardInterrupt):
choice='q'
print'\nYou picked: [%s]'%choice
ifchoicenotin'uovq':
print'invalid option, try again'
else:
chosen=1
ifchoice=='q': done=1
ifchoice=='u': pushit()
ifchoice=='o': popit()
ifchoice=='v': viewstack()
if__name__=='__main__':
showmenu()