如何将列表转换为 ASCII,但我想在转换后再次拥有一个列表。

我发现这是从 ASCII 转换为列表:

L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
print(''.join(map(chr,L)))

但它不能反向工作。

这是我的输入:
L = ['h','e','l','l','o']

我想要这个作为输出:
L = ['104','101','108','108','111']

最佳答案

L = ['h','e','l','l','o']
print(list(map(str, map(ord, L))))

这输出:
['104', '101', '108', '108', '111']

关于python - 如何将列表转换为 ASCII,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51513526/

10-13 05:20