Final answer:
To create an array of 100 elements all equal to 1 using numpy, use the numpy.ones() function.
Step-by-step explanation:
To create an array of 100 elements all equal to 1 using numpy, you can use the numpy.ones() function. Here's an example:
import numpy as np
one_array = np.ones(100)
print(one_array)
This will create an array named one_array with 100 elements, all equal to 1. The print() function will display the array.