159k views
5 votes
Using numpy and its functions:

Create an array of 100 elements all equal to 1, assign the array to a variable named one_array, and print it.
In [6]: _________
In []: _________

User JaydeepW
by
8.7k points

1 Answer

4 votes

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.

User AlonS
by
7.5k points