如何在给定范围内创建一个numpy数组?
我们必须在用户提供的范围内创建一个numpy数组。我们将使用arange()numpy库中的函数来获取我们的输出。
算法
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("输入起始值: ")) end_val = int(input("输入结束值: ")) Step_val = int(input("输入步骤值: ")) print(np.arange(start_val, end_val, Step_val))输出结果
输入起始值: 5 输入结束值: 50 输入步骤值: 5 [ 5 10 15 20 25 30 35 40 45]