Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to reference second line of matrix in 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
  
 
PREVIOUS NEXT
Tagged: #reference #line #matrix #python
ADD COMMENT
Topic
Name
4+2 =