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

จะพิมพ์องค์ประกอบอาร์เรย์ภายในช่วงที่กำหนดโดยใช้ Numpy ได้อย่างไร


ในโปรแกรมนี้ เราต้องพิมพ์องค์ประกอบของอาร์เรย์ numpy ในช่วงที่กำหนด ฟังก์ชัน numpy ต่างๆ ที่ใช้คือ numpy.where() และ numpy.logical_and()

อัลกอริทึม

Step 1: Define a numpy array.
Step 2: Use np.where() and np.logical_and() to find the numbers within the given range.
Step 3: Print the result.

โค้ดตัวอย่าง

import numpy as np

arr = np.array([1,3,5,7,10,2,4,6,8,10,36])
print("Original Array:\n",arr)

result = np.where(np.logical_and(arr>=4, arr<=20))
print(result)

ผลลัพธ์

Original Array:
[ 1  3  5  7 10  2  4  6  8 10 36]
(array([2, 3, 4, 6, 7, 8, 9], dtype=int64),)

คำอธิบาย

ผลลัพธ์จะให้ตำแหน่งดัชนีขององค์ประกอบที่ตรงตามเงื่อนไขในฟังก์ชัน np.where()