+ 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 Answers
+ 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))