Assignment
1. Write Python program to implement Stack ADT using both Lists and Linked Lists that includes the following operations:
a) To add a data element in the stack
b) To remove a data element from the stack
c) To print all the data elements of the stack
d) To get the size of the stack.