string = "google" list = list(string) print(list) list_ord = [ord(i) for i in list] print(list_ord) list_chr = [chr(i) for i in list_ord] print(list)
To embed this project on your website, copy the following code and paste it into your website's HTML: