/ / Python 3 lançando erro para tratamento de exceções - python, python-3.x, tratamento de exceções

Python 3 lançando erro para tratamento de exceções - python, python-3.x, tratamento de exceções

Comecei a aprender python na semana passada e não consigo entender o que está errado aqui:

def add(x,y):
"""Adds 2 numbers and returns the result"""
return x+y

def sub(x,y):
"""Subtracts 2 numbers and returns the result"""
return x-y


a = int(input("Enter first number"))
b = int(input("Enter second number"))
c = int(input("Enter 1 for subtraction , 2 for addition and 3 for both"))
try:
if c>3:
raise ValueError()
except ValueError():
print ("Wrong choice")
else:
print ("Your choice is ",c)
if (c==1):
print ("Subtraction of 2 numbers=",(sub(a,b)))
if (c==2):
print ("Addition of 2 numbers = ",(add(a,b)))
if (c==3):
print ("Subtraction of 2 numbers=",(sub(a,b)))
print ("Addition of 2 numbers = ",(add(a,b)))

Se eu digitar 4, isso gerará esse erro:

Traceback (most recent call last):
File "C:/Program Files (x86)/Python35-32/calculator.py", line 15, in <module>
raise ValueError()
ValueError

Durante o tratamento da exceção acima, ocorreu outra exceção:

Traceback (most recent call last):
File "C:/Program Files (x86)/Python35-32/calculator.py", line 16, in <module>
except ValueError():
TypeError: catching classes that do not inherit from BaseException is not allowed

Respostas:

4 para resposta № 1

Você está tentando pegar um instância do ValueError(), onde o Python espera que você filtre no tipo. Remova a chamada:

except ValueError:
print ("Wrong choice")