- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return the numeric string left-filled with zeros in Numpy
To return the numeric string left-filled with zeros, use the numpy.char.zfill() method in Python Numpy. Here,
The 1st parameter is the inout array
The 2nd parameter is the "width" i.e. the width of string to left-fill elements in array
The numpy.char module provides a set of vectorized string operations for arrays of type numpy.str_ or numpy.bytes_.
Steps
At first, import the required library −
import numpy as np
Create a One-Dimensional array of string −
arr = np.array(['Tom', 'John', 'Kate', 'Amy', 'Brad'])
Displaying our array −
print("Array...
",arr)
Get the datatype −
print("
Array datatype...
",arr.dtype)
Get the dimensions of the Array −
print("
Array Dimensions...
",arr.ndim)
Get the shape of the Array −
print("
Our Array Shape...
",arr.shape)
Get the number of elements of the Array −
print("
Elements in the Array...
",arr.size)
To return the numeric string left-filled with zeros, use the numpy.char.zfill() method −
print("
Result...
",np.char.zfill(arr, width = 15))
Example
import numpy as np # Create a One-Dimensional array of string arr = np.array(['Tom', 'John', 'Kate', 'Amy', 'Brad']) # Displaying our array print("Array...
",arr) # Get the datatype print("
Array datatype...
",arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # Get the number of elements of the Array print("
Number of elements in the Array...
",arr.size) # To return the numeric string left-filled with zeros, use the numpy.char.zfill() method in Python Numpy # The 1st parameter is the inout array # The 2nd parameter is the "width" i.e the width of string to leftfill elements in array print("
Result...
",np.char.zfill(arr, width = 15))
Output
Array... ['Tom' 'John' 'Kate' 'Amy' 'Brad'] Array datatype... <U4 Array Dimensions... 1 Our Array Shape... (5,) Number of elements in the Array... 5 Result... ['000000000000Tom' '00000000000John' '00000000000Kate' '000000000000Amy' '00000000000Brad']
- Related Articles
- Return a new array of given shape filled with zeros in Numpy
- Return a new array of given shape filled with zeros and also set the desired datatype in Numpy
- Return a new array of given shape filled with zeros and also set the desired output in Numpy
- Left pad a String in Java with zeros
- Return a new array of given shape filled with ones in Numpy
- Return a new array of a given shape filled with ones in Numpy
- Return a copy of self, with masked values filled with a given value in Numpy
- How to get a string left padded with zeros in Python?
- Return a 2-D array with ones on the diagonal and zeros elsewhere in Numpy
- Return an array with the elements of an array left-justified in a string of length width in Numpy
- Return a new array of given shape filled with ones but with different datatype in Numpy
- Return a 2-D array with ones on the upper diagonal and zeros elsewhere in Numpy
- Return a 2-D array with ones on the lower diagonal and zeros elsewhere in Numpy
- Return a new array of given shape and type, filled with array-like in Numpy
- Return an array of zeros with the same shape and type as a given array in Numpy

Advertisements