Input :
#Program that converts arrays into a list, loops through the list to form a string using the chr() function
#clcoding.com
import numpy as np
def ord_to_character(words = ""):
x = np.array([112,121,134,123,32,96,34,56,67,111,98,97,119,105,113])
y = np.array([78,90,104,123,132,53,34,56,97,116,98,27,119,77,117,12])
z = np.array([111,112,134,123,21,32,108,106,89,70,80,103,103,120,121])
letters = x.tolist() + y.tolist() + z.tolist()
for letter in letters:
words += chr(letter)
return words
sentence = ord_to_character()
print(sentence)
Output :
py{ `"8CobawiqNZh{5"8atbwMuop{ ljYFPggxy
0 Comments:
Post a Comment