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,

. 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

1 Expert Approved Answer
Step: 1 Unlock

There are a few issues with the code 1 Indentation Error The print n statement is not properly inden... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!