Write a NumPy program to capitalize the first letter, lowercase, uppercase, swapcase, title-case of all the elements of a given array
import numpy as np x = np.array(['python', 'PHP', 'java', 'C++'], dtype=np.str) print("Original Array:") print(x) capitalized_case = np.char.capitalize(x) lowered_case = np.char.lower(x) uppered_case = np.char.upper(x) swapcased_case = np.char.swapcase(x) titlecased_case = np.char.title(x) print("\nCapitalized: ", capitalized_case) print("Lowered: ", lowered_case) print("Uppered: ", uppered_case) print("Swapcased: ", swapcased_case) print("Titlecased: ", titlecased_case)
Sample Input:
(['python', 'PHP', 'java', 'C++'], dtype=np.str)
Sample Output:
Original Array: ['python' 'PHP' 'java' 'C++'] Capitalized: ['Python' 'Php' 'Java' 'C++'] Lowered: ['python' 'php' 'java' 'c++'] Uppered: ['PYTHON' 'PHP' 'JAVA' 'C++'] Swapcased: ['PYTHON' 'php' 'JAVA' 'c++'] Titlecased: ['Python' '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