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
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
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']
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال