หากต้องการคืนค่าดัชนีต่ำสุดในสตริงที่พบสตริงย่อย ให้ใช้เมธอด numpy.char.find() ใน Python Numpy เมธอดส่งคืนอาร์เรย์เอาต์พุตของ int ส่งกลับ -1 ถ้าไม่พบย่อย พารามิเตอร์แรกคืออาร์เรย์อินพุต พารามิเตอร์ที่สองคือสตริงย่อยที่จะค้นหา พารามิเตอร์ที่สามและสี่เป็นอาร์กิวเมนต์ที่ไม่บังคับ โดยที่จุดเริ่มต้นและจุดสิ้นสุดจะถูกตีความว่าเป็นสัญกรณ์ inslice
ขั้นตอน
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import numpy as np
สร้างอาร์เรย์หนึ่งมิติของสตริง -
arr = np.array(['KATIE', 'JOHN', 'CRATE', 'AmY', 'BRADley'])
กำลังแสดงอาร์เรย์ของเรา -
print("Array...\n",arr)
รับประเภทข้อมูล -
print("\nArray datatype...\n",arr.dtype)
รับขนาดของอาร์เรย์ -
print("\nArray Dimensions...\n",arr.ndim)
รับรูปร่างของอาร์เรย์ -
print("\nOur Array Shape...\n",arr.shape)
รับจำนวนขององค์ประกอบของอาร์เรย์ -
print("\nNumber of elements in the Array...\n",arr.size)
หากต้องการคืนค่าดัชนีต่ำสุดในสตริงที่พบสตริงย่อย ให้ใช้เมธอด numpy.char.find() ใน Python Numpy เมธอดส่งคืนอาร์เรย์เอาต์พุตของ int ส่งกลับ -1 ถ้าไม่พบย่อย -
print("\nResult (find)...\n",np.char.find(arr, 'AT', start = 1, end = 3))
ตัวอย่าง
import numpy as np # Create a One-Dimensional array of strings arr = np.array(['KATIE', 'JOHN', 'CRATE', 'AmY', 'BRADley']) # Displaying our array print("Array...\n",arr) # Get the datatype print("\nArray datatype...\n",arr.dtype) # Get the dimensions of the Array print("\nArray Dimensions...\n",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...\n",arr.shape) # Get the number of elements of the Array print("\nNumber of elements in the Array...\n",arr.size) # To return the lowest index in the string where substring sub is found, use the numpy.char.find() method in Python Numpy # The method returns the output array of ints. Returns -1 if sub is not found. print("\nResult (find)...\n",np.char.find(arr, 'AT', start = 1, end =3))
ผลลัพธ์
Array... ['KATIE' 'JOHN' 'CRATE' 'AmY' 'BRADley'] Array datatype... <U7 Array Dimensions... 1 Our Array Shape... (5,) Number of elements in the Array... 5 Result (find)... [ 1 -1 -1 -1 -1]