Q:

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

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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']

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now