

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 an array with the elements of an array left-justified in a string of length width in Numpy
To return an array with the elements of an array left-justified in a string of length width, use the numpy.char.ljust() method in Python Numpy. The "width" parameter is the length of the resulting strings. 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...\n",arr)
Get the datatype −
print("\nArray datatype...\n",arr.dtype)
Get the dimensions of the Array −
print("\nArray Dimensions...\n",arr.ndim)
Get the shape of the Array −
print("\nOur Array Shape...\n",arr.shape)
Get the number of elements of the Array −
print("\nElements in the Array...\n",arr.size)
To return an array with the elements of an array left-justified in a string of length width, use the numpy.char.ljust() method. The "width" parameter is the length of the resulting strings −
print("\nResult...\n",np.char.ljust(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...\n",arr) # Get the datatype print("\nArray datatype...\n",arr.dtype) # Get the dimensions of the Array print("\nArray Dimensions...\n",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...\n",arr.shape) # Get the number of elements of the Array print("\nNumber of elements in the Array...\n",arr.size) # To return an array with the elements of an array left-justified in a string of length width, use the numpy.char.ljust() method in Python Numpy # The "width" parameter is the length of the resulting strings print("\nResult...\n",np.char.ljust(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... ['Tom ' 'John ' 'Kate ' 'Amy ' 'Brad ']
- Related Questions & Answers
- Return an array with the elements of a Numpy array right-justified in a string of length width
- Return a copy of an array with its elements centered in a string of length width in Numpy
- Return the length of the masked array in Numpy
- Return the Lower triangle of an array in Numpy
- Return the Upper triangle of an array in Numpy
- Return an array formed from the elements of a masked array at the given indices in NumPy
- Return an array formed from the elements of a masked array but clip the range in NumPy
- Return an array formed from the elements of a masked array but wrap around range in NumPy
- Return the floor of the array elements in Numpy
- Return the cube-root of an array elementwise in Numpy
- Shift the bits of array elements of a Two-Dimensional array to the left in Numpy
- Python program to left rotate the elements of an array
- Remove axes of length one from an array in Numpy
- Return an array of ones with the same shape and type as a given array in Numpy
- Return an array of zeros with the same shape and type as a given array in Numpy