DATA STRUCTURES IN
PYTHON
Q1) Write a Python program to implement all basic
operations of a Stack, such as adding element (PUSH
operation), removing element (POP operation) and
displaying the Stack elements (Traversal operation) using
lists.
Output:
Q2) Write a program to display unique vowels
present in the given word using Stack.
Output:
Q3) Write a program to create a Stack called
Employee, to perform the basic operations on Stack
using list. The list contains the two values-employee
number and employee name. The program should
include the options for addition, deletion and display
of employee details.
Output: