我被困在这个问题上:用户输入一个单词,程序输出单词中每个字母的unicode这是输入语句的外观:word = input("Enter a word: ")假设用户输入单词“Cat”,输出将如下所示:C: 67a: 97t: 116
2 回答
牛魔王的故事
TA贡献1830条经验 获得超3个赞
根据您的示例,我猜您尝试输出的是字符的 ASCII 值。如果是这样,您可以使用 python 内置函数检查 ASCII 值ord()。
userInput = input("Enter a word: ")
for i in userInput:
print('{}: {}'.format(i, ord(i)))
输出:
C: 67
a: 97
t: 116
富国沪深
TA贡献1790条经验 获得超9个赞
使用ord()。
word = input("Enter a word: ")
for letter in word:
print(letter + ': ', ord(letter))
添加回答
举报
0/150
提交
取消