Write a NumPy program to remove the leading whitespaces of all the elements of a given array.
import numpy as np x = np.array([' python exercises ', ' PHP ', ' java ', ' C++'], dtype=np.str) print("Original Array:") print(x) lstripped_char = np.char.lstrip(x) print("\nRemove the leading whitespaces : ", lstripped_char)
Sample Input:
([' python exercises ', ' PHP ', ' java ', ' C++'], dtype=np.str)
Sample Output:
Original Array: [' python exercises ' ' PHP ' ' java ' ' C++'] Remove the leading whitespaces : ['python exercises ' 'PHP ' 'java ' 'C++']
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Input:
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer