Queue Data Structure in Python

write the Python code to define a Queue data structure. You definition should include the following:
– Definition of queue class
– Definition of two methods
– Enqueue (insertion)
– Dequeue (removal)
Using your defined queue data structure, do the following:
– Create an empty queue
– Add 2 elements to the queue (integers: 5, 9)
– Display the queue on the screen (showing 2 elements)
– Remove 1 element
– Display the new queue