cara merujuk baris kedua matriks dalam 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