Computer Science, asked by priyasriram683, 2 days ago

consider the following nested list definition x=[[10,20],[30,40],[50,60]] How do i get the value 40 from the list

Answers

Answered by keycomputereducation
0

Answer:

print(x[1][1])

Explanation:

with row value 1 and column value 1

values. row and columns

10 20 | 00 01

30 40 | 10 11

50 60 | 20 21

Similar questions