Answers for "how to access a 2d array in python"

3

2d array in python

from array import *

T = [[11, 12, 5, 2], [15, 6,10], [10, 8, 12, 5], [12,15,8,6]]
for r in T:
    for c in r:
        print(c,end = " ")
    print()
Posted by: Guest on July-07-2020
1

2d array pytho

# 2D array that is 3x4 (3 columns, 4 rows)
# note that it is essentially an array of lists
arr = [
		[11, 12, 5],
        [15, 6, 10],
        [10, 8, 12],
        [12, 15, 8]
        ]
Posted by: Guest on April-26-2021

Code answers related to "how to access a 2d array in python"

Python Answers by Framework

Browse Popular Code Answers by Language