Create a stack named XYZ XYZ = [ ] Push an element ‘a’ into stack XYZ XYZ.append('a') Pop an element from stack XYZ XYZ.pop() Peak the top element of stack XYZ XYZ[-1] Check Size of stack XYZ len(XYZ) Display the entire stack XYZ