사용자가 제공한 범위에서 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]