Answers for "2 dimensional array python address"

1

how to input 2-d array in python

matrix = [input().split() for i in range(no_of_rows)] # if only row is given and the number of coloumn has to be decide by user
matrix= [[input() for j in range(no_of_cols)] for i in range(no_of_rows)] # if both row and coloumn has been taken as input from user
Posted by: Guest on April-27-2020
-1

python print 2d array as table

for row in A:
    for val in row:
        print '{:4}'.format(val),
    print
Posted by: Guest on March-20-2020

Code answers related to "2 dimensional array python address"

Python Answers by Framework

Browse Popular Code Answers by Language