Question: Can I get help with this python code? Name: 2 (4 marks) write a function called arereversed that takes two list arguments. This function should
Name: 2 (4 marks) write a function called arereversed that takes two list arguments. This function should return True of the list arguments is a reversed copy (same values but in reverse order) of the other, and False otherwise. For example, [1,2,3,4,5] and [5,4,3,2,1] are reverse copies, while [0,1,2,3,41 and 432,1,11 are not. You can assume that the two argument lists will always have the same length, but cannot modify the original lists or use the reverse function supplied by Python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
