+ 1
What is the result of this code?
a = list(range(2,20,3)) a.insert(2,5) a.append(100) print(len(a))
2 odpowiedzi
+ 2
You can also try it yourself in code playground 😋
0
Tomáš Bukvička Why you made this question?
a = list(range(2,20,3)) a.insert(2,5) a.append(100) print(len(a))