w3resource

NumPy: Create an array with values ranging from 12 to 38

NumPy: Array Object Exercise-5 with Solution

Write a NumPy program to create an array with values ranging from 12 to 38.

Python NumPy: Create an array with values ranging from 12 to 20

Sample Solution:

Python Code:

# Importing the NumPy library with an alias 'np'
import numpy as np

# Creating an array 'x' using arange() function with values from 12 to 37 (inclusive)
x = np.arange(12, 38)

# Printing the array 'x' containing values from 12 to 37
print(x)

Sample Output:

[12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 36                                                                     
 37]

Explanation:

In the above code -

np.arange(12, 38): Creates a one-dimensional NumPy array with a range of integers starting from 12 (inclusive) up to, but not including, 38. The result will be an array of length 26 containing integers from 12 to 37.

print(x): Prints the created NumPy array.

Python-Numpy Code Editor:

Previous: Write a NumPy program to create a null vector of size 10 and update sixth value to 11.
Next: Write a NumPy program to reverse an array (first element becomes last).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.