How can I convert a list into ASCII, but I want to have a list again after I converted it.
I found this for converting from ASCII to a list:
L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
print(''.join(map(chr,L)))
But it doesn't work reversed.
This is my input:
L = ['h','e','l','l','o']
And I want this as output:
L = ['104','101','108','108','111']