gpt4 book ai didi

python - Python 新手 - 检查字符串上的用户输入返回错误不起作用

转载 作者:行者123 更新时间:2023-12-01 05:59:39 25 4
gpt4 key购买 nike

我正在尝试修改下面的代码以检查用户的输入。如果输入是字符串,我想生成错误,请参阅函数 choiceTest()。但这不起作用,我得到以下异常,你能帮忙吗格雷厄姆

Choice your option:k
Traceback (most recent call last):
File "C:\Users\Graham\bkup-workspaces\workspace\python-1\calculator.py", line 54, in <module>
choice = menu()
File "C:\Users\Graham\bkup-workspaces\workspace\python-1\calculator.py", line 18, in menu
return input ("Choice your option:")
File "C:\Users\Graham\Desktop\letsussee\eclipse-java-helios-win32\eclipse\plugins\org.python.pydev_2.5.0.2012040618\PySrc\pydev_sitecustomize\sitecustomize.py", line 210, in input
return eval(raw_input(prompt))
File "<string>", line 1, in <module>
NameError: name 'k' is not defined

代码:

# calculator program

# NO CODE IS REALLY RUN HERE, IT IS ONLY TELLING US WHAT WE WILL DO LATER
# Here we will define our functions
# this prints the main menu, and prompts for a choice
def menu():
#print what options you have

print "Welcome to calculator.py"
print "your options are:"
print " "
print "1) Addition"
print "2) Subtraction"
print "3) Multiplication"
print "4) Division"
print "5) Quit calculator.py"
print " "
return input ("Choice your option:")
# this adds two numbers given

def add(a,b):
print a, "+", b, "=", a + b

# this subtracts two numbers given
def sub(a,b):
print b, "-", a, "=", b - a

# this multiplies two numbers given
def mul(a,b):
print a, "*", b, "=", a * b

# this divides two numbers given
def div(a,b):
print a, "/", b, "=", a / b

# decide if the choice is valid or not
def choiceTest():


isinstanceValue = isinstance(choice,int)
instancevalueout = str(isinstanceValue)
print "value is" + instancevalueout
if not instancevalueout is "True":
print " NOT AN INTEGER " + instancevalueout
raise SystemExit

# NOW THE PROGRAM REALLY STARTS, AS CODE IS RUN
loop = 1
choice = 0
isinstanceValue = True
instancevalueout = ""

while loop == 1:
choice = menu()
choiceTest()
if choice == 1:
add(input("Add this: "),input("to this: "))
elif choice == 2:
sub(input("Subtract this: "),input("from this: "))
elif choice == 3:
mul(input("Multiply this: "),input("by this: "))
elif choice == 4:
div(input("Divide this: "),input("by this: "))
elif choice == 5:
loop = 0


print "Thankyou for using calculator.py!"

# NOW THE PROGRAM REALLY FINISHES

最佳答案

您的问题是您正在使用 input()它(在 Python 2.x 中)将输入解析为 Python 代码,这意味着只有当用户输入用引号引起来的字符串时,这才会按预期工作。

您可能想要raw_input()它为您提供一个字符串(如 3.x 中的 input() 所做的那样),并且更安全,因为它不允许执行任意代码。请注意,然后您将尝试将其转换为数字,并在失败时捕获异常,告诉您用户尚未输入数字。

类型检查在 Python 中是不受欢迎的,因为它任意限制类 - 这是 Python 通常不会做的事情,因为它是鸭子类型 - 最好尝试做你想做的事,并在失败时捕获异常,优雅地处理它。这被称为请求宽恕,而不是请求

关于python - Python 新手 - 检查字符串上的用户输入返回错误不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11162899/

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