Comment faire référence à la deuxième ligne de matrice dans Python

matrix = [
  1,2,3,
  5,6,7,
[
print(matrix[2][1]) --the first square bracket reference the second line of the matrix and the second one is the number along
  
Best cake