Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะสร้างอาร์เรย์ 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("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]