gpt4 book ai didi

python - 如何将列表转换为 ASCII

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:41 25 4
gpt4 key购买 nike

如何将列表转换为 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']
changer = [ord(x) for x in L]
print(changer)

使用函数ord()

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com