如何在给定的范围内创建一个 numpy 数组?
我们必须在用户提供的范围内创建一个 numpy 数组。我们将使用 numpy 库中的 arange() 函数来获得我们的输出。
算法
Step1: Import numpy. Step 2: Take start_value, end_value and Step from the user. Step 3: Print the array using arange() function in numpy.
示例代码
import numpy as np start_val = int(input("Enter starting value: ")) end_val = int(input("Enter ending value: ")) Step_val = int(input("Enter Step value: ")) print(np.arange(start_val, end_val, Step_val))
输出
Enter starting value: 5 Enter ending value: 50 Enter Step value: 5 [ 5 10 15 20 25 30 35 40 45]
广告