file d'attente Peek Python

## A peek function in the python queue is used to print the first element of the queue. 
## It returns the item which is present at the front index of the queue.
## It will not remove the first element but print it.

def peek(self):
  print(self.queue[self.front])
queue1.peek()
Homeless Herring