Answers for "make same elements of array in python"

1

create an array with same value python

>> import numpy as np
>> fives = np.repeat(5, 10)
#This creates an array of the number 5 repeated 10 times.
Posted by: Guest on June-28-2021

Code answers related to "make same elements of array in python"

Python Answers by Framework

Browse Popular Code Answers by Language