gpt4 book ai didi

python - 如何在python中输入字母

转载 作者:行者123 更新时间:2023-11-28 21:37:44 26 4
gpt4 key购买 nike

所以我想像处理数字一样处理字母表

num1=int(input("enter Ist digit:"))
num2=int(input("enter IInd digit:"))
num3=int(input("enter IIIrd digit:"))
num4=int(input("enter IVth digit:"))
num5=int(input("enter Vth digit:"))

我想输入字母而不是数字所以我把它改成了

alpha1=chr(input("enter Ist letter"))

但是我一直报错

   alpha1=chr(input("enter Ist alphabet:"))
TypeError: an integer is required (got type str)

最佳答案

阅读docs :

chr(i)

Return a string of one character whose ASCII code is the integer i.

input([prompt])

If the prompt argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that

你不需要转换字符。你从input中得到的已经是一个字符串

关于python - 如何在python中输入字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49051871/

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