+ 2
m = [ [1, 2, 3], [4, 5, 6] ] print(m[1][2])
how do we get 6 here in output explain plz
2 ответов
+ 5
Zero indexing
0 refers to first item
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2431/
how do we get 6 here in output explain plz