-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathE3-6.py
59 lines (47 loc) · 1.43 KB
/
E3-6.py
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
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright (C) Deepali Srivastava - All Rights Reserved
# This code is part of Python course available on CourseGalaxy.com
class Stack:
MAX_SIZE = 5
def __init__(self):
self.items = []
def is_empty(self):
return self.items == []
def size(self):
return len(self.items)
def push(self, item):
if self.size() == Stack.MAX_SIZE:
raise RuntimeError('Stack is full')
self.items.append(item)
def pop(self):
if self.is_empty():
raise RuntimeError("Stack is empty")
return self.items.pop()
def display(self):
print(self.items)
if __name__ == "__main__":
st = Stack()
while True:
print("1.Push")
print("2.Pop")
print("3.Peek")
print("4.Size")
print("5.Display")
print("6.Quit")
choice = int(input("Enter your choice : "))
if choice == 1:
x=int(input("Enter the element to be pushed : "))
st.push(x)
elif choice == 2:
x=st.pop()
print("Popped element is : " , x)
elif choice == 3:
print("Element at the top is : " , st.peek())
elif choice == 4:
print("Size of stack " , st.size())
elif choice == 5:
st.display()
elif choice == 6:
break;
else:
print("Wrong choice")
print()