Question: . Can you describe what's wrong with the below code? 1 testProc([1, 2, 3]) # Explicitly passing in a list 2 testProc() # Using

. Can you describe what's wrong with the below code? 1 testProc([1, 2, 3]) # Explicitly passing in a list 2 testProc() # Using a default empty list 3 4 def testProc(n = []): 5 # Do something with n 6 7 print n
Step by Step Solution
There are 3 Steps involved in it
There are a few issues with the code 1 Indentation Error The print n statement is not properly inden... View full answer
Get step-by-step solutions from verified subject matter experts
