Write a NumPy program to encode all the elements of a given array in cp500 and decode it again.
import numpy as np x = np.array(['python exercises', 'PHP', 'java', 'C++'], dtype=np.str) print("Original Array:") print(x) encoded_char = np.char.encode(x, 'cp500') decoded_char = np.char.decode(encoded_char,'cp500') print("\nencoded =", encoded_char) print("decoded =", decoded_char)
Sample Input:
(['python exercises', 'PHP', 'java', 'C++'], dtype=np.str)
Sample Output:
encoded = [b'\x97\xa8\xa3\x88\x96\x95@\x85\xa7\x85\x99\x83\x89\xa2\x85\xa2' b'\xd7\xc8\xd7' b'\x91\x81\xa5\x81' b'\xc3NN'] decoded = ['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