Answers for "numpy constant array"

1

fill np array with same value

an_array = np.full((3, 5), 8)
Posted by: Guest on June-17-2020
0

how to create a numpy array with constant value

>>> np.full((3, 5), 7)
array([[ 7.,  7.,  7.,  7.,  7.],
       [ 7.,  7.,  7.,  7.,  7.],
       [ 7.,  7.,  7.,  7.,  7.]])

>>> np.full((3, 5), 7, dtype=int)
array([[7, 7, 7, 7, 7],
       [7, 7, 7, 7, 7],
       [7, 7, 7, 7, 7]])
Posted by: Guest on October-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language