We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e128b6 commit ac37ea5Copy full SHA for ac37ea5
stack-implementtation.py
@@ -0,0 +1,10 @@
1
+# Python code to demonstrate Implementing
2
+# stack using list
3
+stack = ["Amar", "Akbar", "Anthony"]
4
+stack.append("Ram")
5
+stack.append("Iqbal")
6
+print(stack)
7
+print(stack.pop())
8
9
10
0 commit comments