In this python numpy program, we will create an array of 3 ones using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create an array of 3 ones using np.ones() and give datatype as int and number of ones i.e. 3 to the above function.
- Print the output.
import numpy as np
x = np.ones(3, dtype = int)
print(x)
Output :
[1 1 1]