Why does the Len(arr) return 7 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why does the Len(arr) return 7

Won't the function call for f(range(5)) result into initialization of another arr with Len=0 and that led to arr of Len=3 and print sum of Len of array =5 . Why does the arr have elements [0,2,0,2,4,0,2,0,2,4] when we return the arr. What is the logic of the execution of the function? https://code.sololearn.com/cR2GvEyC55O1/?ref=app

16th Jul 2020, 5:06 AM
MahirShah
5 Answers
+ 3
This is a gotcha when using mutable types as a value for a default parameter. In order to avoid this use None and then check inside the function if the parameter is equal to None. If so then you can set the local variable to an empty list. def example(v, arr=None): if arr is None: arr = [] .... ....
16th Jul 2020, 5:31 AM
ChaoticDawg
ChaoticDawg - avatar
+ 3
16th Jul 2020, 6:39 AM
MahirShah
+ 1
Thanks Bagon
17th Jul 2020, 7:03 AM
MahirShah
0
Bagon can you please help with some material on default arguments . I am trying to find it but am not able to find one . And also some material on python as well ?
17th Jul 2020, 6:25 AM
MahirShah
0
Why does on returning the array it returns [0,2,0,2,4,0,2,0,2,4]
17th Jul 2020, 5:22 PM
MahirShah