Answers for "create numpy array with ones"

0

create numpy array with ones

import numpy as np
shape = (3,3)
a = np.ones(shape)
Posted by: Guest on January-18-2022

Code answers related to "create numpy array with ones"

Python Answers by Framework

Browse Popular Code Answers by Language