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

Q-15. 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
Get step-by-step solutions from verified subject matter experts
