+ 3
What's happening for print (things[2][2])'s output?
number = 3 things = ["string", 0, [1, 2, number], 4.56] print(things[1]) print(things[2]) print(things[2][2]) output- >>> 0 [1, 2, 3] 3 >>>
5 Antworten
+ 6
it prints the 3rd element of the list, which is the 3rd element of things.
it wont function with the other elements of things, as they are not containers like [1, 2, 3]
+ 3
things[2] is a list, so things[2][2] will be the value of the third item in the list.
k = things[2]
print(k[2])
>>>
3
+ 3
partha i think you are PUBG player.🤗😀😀🤠🤠
+ 1
thanks Kevin and gil
0
the answer is idk