Queue python
Once Again i need your Help, i have a little problem, this is the question asked: *** You are making a call center application, which should handle customers in a queue. The CallCenter class is implemented as a Queue. Each element of the queue has the topic of the call as its value. The two possible values are 'general' and 'technical'. A 'general' call takes on average 5 minutes to handle, while a 'technical' call requires 10 minutes. The given code adds multiple customers to the Queue from user input. You need to dequeue all added customers, calculate and output the total time required to handle all calls. *** and this is my code: https://code.sololearn.com/c3KU0SBEG34w but it doesnt work as it should. There are 4 test case scenarios, 1,2 and 4 are working. but scenario 3 doesnt work, and i cant see what the problem is because the resuult is hidden. thanks for your help!