Answers for "numpy create array of digits"

0

create an array of n same value python

>> import numpy as np

>> np.full(
    shape=10,
    fill_value=3,
    dtype=np.int)

array([3, 3, 3, 3, 3, 3, 3, 3, 3, 3])
Posted by: Guest on May-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language