- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 an array with the elements of a Numpy array right-justified in a string of length width
To return an array with the elements of an array right-justified in a string of length width, use the numpy.char.rjust() 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...
",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 an array with the elements of an array right-justified in a string of length width, use the numpy.char.rjust() method in Python Numpy
# The "width" parameter is the length of the resulting strings
print("
Result...
",np.char.rjust(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 an array with the elements of an array right-justified in a string of length width, use the numpy.char.rjust() method in Python Numpy # The "width" parameter is the length of the resulting strings print("
Result...
",np.char.rjust(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 Articles
- Return an array with the elements of an array left-justified in a string of length width in Numpy
- Return a copy of an array with its elements centered in a string of length width 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 the length of the masked array 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
- Shift the bits of array elements of a Two-Dimensional array to the right in Numpy
- Copy and return all the elements of a masked array in Numpy
- Return the pickle of the masked array as a string in NumPy
- Return the length of a string array element-wise in Python
- Return the truncated value of the array elements in Numpy
- Return the average of the masked array elements in Numpy
- Return the variance of the masked array elements in Numpy
- Return the ceil value of the array elements in Numpy
