DequepeekOn this pageDeque.peekTake a look at the element at the front of the queueUsagepeek()Returns: element Returns the element at the front of the queue Examplefrom jellybeans.structures import Dequeq = Deque()q.enqueue(20)q.enqueue(389)q.enqueue(876)print(q.peek()) # 20