Question: Write a function in Python named crazy_list that accepts a list as parameter and returns a boolean (either True or False) based on whether or
Write a function in Python named crazy_list that accepts a list as parameter and returns a boolean (either True or False) based on whether or not the list is the same forward and backwards. You may NOT use list.reverse() method. For example, if the list received by the function is:
[5, 6, 8, 9, 'PYTHON', 9, 8, 6, 5] Return True [4, 5, 6, 7, 8, 4, 5, 2] Return False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
