Answers for "initialise a 2d list in python numpy"

0

how to initialize a 2d list in python

# Using above second method to create a
# 2D array
rows, cols = (5, 5)
arr = [[0 for i in range(cols)] for j in range(rows)]
print(arr)
Posted by: Guest on July-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language