gpt4 book ai didi

python - 将 chr()/ord() 转换为多字符

转载 作者:行者123 更新时间:2023-12-01 03:42:09 24 4
gpt4 key购买 nike

Python 初学者编程 (3.4)
是否可以在 chr() 和 ord() 中传递多个值?我尝试过以下内容:

userInput = input('Please write your input: ')
> Hello
result = ord(userInput) #here is the error because i put multiple values instead of just one
print(result)

这是我正在寻找的输出:72 101 108 108 111(你好),但我收到一条错误消息,告诉我只能在 chr()/ord( 内传递 1 个字符/值)这可能吗?如果没有,你能为我提供正确的方向吗?谢谢

最佳答案

使用列表理解 - 将 ord 应用于字符串中的每个字符。

In [777]: [ord(i) for i in 'hello']
Out[777]: [104, 101, 108, 108, 111]

关于python - 将 chr()/ord() 转换为多字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39429601/

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