Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Left-justify elements of an array and set the characters to use for padding in Numpy
To left-justify elements of an array and set the characters to use for padding, use the numpy.char.ljust() method in Python Numpy. The "width" parameter is the length of the resulting strings. The "fillchar" parameter is the character to use for padding.
The function returns an output array of str or unicode, depending on input type. 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...<br>",arr)
Get the datatype: −
print("\nArray datatype...<br>",arr.dtype)
Get the dimensions of the Array −
print("\nArray Dimensions...<br>",arr.ndim)
Get the shape of the Array −
print("\nOur Array Shape...<br>",arr.shape)
Get the number of elements of the Array −
print("\nElements in the Array...<br>",arr.size)
To left-justify elements of an array and set the characters to use for padding, use the numpy.char.ljust() method. The "width" parameter is the length of the resulting strings. The "fillchar" parameter is the character to use for padding −
print("\nResult...<br>",np.char.ljust(arr, width = 15, fillchar = '$'))
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...<br>",arr)
# Get the datatype
print("\nArray datatype...<br>",arr.dtype)
# Get the dimensions of the Array
print("\nArray Dimensions...<br>",arr.ndim)
# Get the shape of the Array
print("\nOur Array Shape...<br>",arr.shape)
# Get the number of elements of the Array
print("\nNumber of elements in the Array...<br>",arr.size)
# To left-justify elements of an array and set the characters to use for padding, use the numpy.char.ljust() method in Python Numpy
# The "width" parameter is the length of the resulting strings
# The "fillchar" parameter is the character to use for padding
print("\nResult...<br>",np.char.ljust(arr, width = 15, fillchar = '$'))
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... ['Tom$$$$$$$$$$$$' 'John$$$$$$$$$$$' 'Kate$$$$$$$$$$$' 'Amy$$$$$$$$$$$$' 'Brad$$$$$$$$$$$']
