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']
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Input:
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer