Write a NumPy program to count the lowest index of "P" in a given array, element-wise

  • برمجة بايثون

Write a NumPy program to count the lowest index of "P" in a given array, element-wise.

الأجوبة

import numpy as np
x1 = np.array(['Python', 'PHP', 'JS', 'EXAMPLES', 'HTML'], dtype=np.str)
print("\nOriginal Array:")
print(x1)
print("count the lowest index of ‘P’:")
r = np.char.find(x1, "P")
print(r)

Sample Input:

(['Python', 'PHP', 'JS', 'EXAMPLES', 'HTML'], dtype=np.str)

Sample Output:

Original Array:
['Python' 'PHP' 'JS' 'EXAMPLES' 'HTML']
count the lowest index of ‘P’:
[ 0  0 -1  4 -1]
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...