x=["c","java","python"] print(len(x)) print("The content of the stack before inserting:",x) x.append("c++") x.append("Android") print("The content of list(stack) after pushing is",x) print(x.pop()) print(x.pop()) print("After poping stack is=",x)