Write a NumPy program to make all the elements of a given string to a numeric string of 5 digits with zeros on its left

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

Write a NumPy program to make all the elements of a given string to a numeric string of 5 digits with zeros on its left.

الأجوبة

import numpy as np
x = np.array(['2', '11', '234', '1234', '12345'], dtype=np.str)
print("\nOriginal Array:")
print(x)
r = np.char.zfill(x, 5)
print("\nNumeric string of 5 digits with zeros:")
print(r) 

Sample Input:

(['2', '11', '234', '1234', '12345'], dtype=np.str)

Sample Output:

Original Array:
['2' '11' '234' '1234' '12345']

Numeric string of 5 digits with zeros:
['00002' '00011' '00234' '01234' '12345']
هل كان المحتوى مفيد؟

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

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