how to make queue data structure in python code example
Example: queue in python
#creating a queue using list
#defining a list
my_queue =[]
#inserting the items in the queue
my_queue.append(1)
my_queue.append(2)
my_queue.append(3)
my_queue.append(4)
my_queue.append(5)
print("The items in queue:")
print(my_queue)
#removing items from queue
print(my_queue.pop(0))
print(my_queue.pop(0))
print(my_queue.pop(0))
print(my_queue.pop(0))
#printing the queue after removing the elements
print("The items in queue:")
print(my_queue)