0
What is output of below code??
number = 3 things = ["string", 0, [1, 2,3], 4.56] print(things[1]) print(things[2]) print(things[2][2])
2 Réponses
+ 2
It should be
0
[1, 2,3]
3
as things[2] is a list but not a string.
+ 2
0
1,2,3
3
number = 3 things = ["string", 0, [1, 2,3], 4.56] print(things[1]) print(things[2]) print(things[2][2])