Question: Here's what I have for the function itself: list1 = [] list2 = [] for i in source1: list1.append(i) for j in source2: list2.append(j) identical
Here's what I have for the function itself:
list1 = []
list2 = []
for i in source1:
list1.append(i)
for j in source2:
list2.append(j)
identical = list1 == list2
return identical
I just need the implementation code for t02!
2. Write and test the following function that uses a Queue: def queue_is_identical(sourcel, source2): Determines whether two given queues are identical. Entries of sourcel and source2 are compared and if all contents are identical and in the same order, returns True, otherwise returns False. Use: identical = queue_is_identical (sourcel, source2) - Parameters: sourcel a queue (Queue) source2 a queue (Queue) Returns: identical True if sourcel and source2 are identical, False otherwise. sourcel and source2 are unchanged. (boolean) Add the function to a PyDev module named functions.py. Test it from t02.py. This function uses a queue, meaning you may manipulate the queue using only the queue interface methods: insert, remove, is_empty, and peek. You may not use or refer to the internal Queue elements such as _values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
