0
fill to take first two elements of the list
list = ["a", "b", "c", "d"] a = list[0 _ _ ]
3 Respuestas
+ 2
list = ["a","b","c","d"]
a = list[0:2]
this is going to return the first two elements
0
thnx
0
list = ["a","b","c","d"]
a = list[0:2]
list = ["a", "b", "c", "d"] a = list[0 _ _ ]