Quick actions

cmd+k|ctrl+k

Navigation

Languages

Matrix

Snippet info

Language

Python

Visibility

public

Author

ak.amita28

Created

2026-04-14T09:44:04.698864Z

Updated

2026-04-14T09:55:41.431485Z

matrix = [
    [1,2,3],
    [2,4,6],
    [3,6,9]
    ]
    
    
print(matrix[0] [2])
print(matrix[1] [0])
INFO