Quick actions

cmd+k|ctrl+k

Navigation

Languages

Matrix

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-03T22:44:58.430622Z

Updated

2025-11-03T22:44:58.430622Z

# Matrix
matrix = [
    [1,2,3],
    [2,3,4],
    [4,5,6]
    ]
     
print(matrix[0][1])
INFO