Question: The following code does not work. Do you see why? Can you suggest a way to fix it? def length(alist): len = 1 for i
The following code does not work. Do you see why? Can you suggest a way to fix it?
def length(alist): len = 1 for i in range(len(alist)): len = len + 1 return len print(length([1,2,3]))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
