1. सीखें
  2. /
  3. पाठ्यक्रम
  4. /
  5. Data Structures and Algorithms in Python

Connected

अभ्यास

Using Python's SimpleQueue

In this exercise, you will work with Python's SimpleQueue(). You will create a queue called my_orders_queue to add the orders of a restaurant and remove them from it when required.

निर्देश

100 XP
  • Create the queue.
  • Add an element to the queue.
  • Remove an element from the queue.