-
Notifications
You must be signed in to change notification settings - Fork 0
/
V022.py
65 lines (48 loc) · 1.55 KB
/
V022.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Excepciones varias y finally
def suma(num1, num2):
return num1 + num2
def resta(num1, num2):
return num1 - num2
def multiplica(num1, num2):
return num1 * num2
def divide(num1, num2):
try:
return num1 / num2
except ZeroDivisionError:
print('No se puede dividir entre 0')
return "Operación erronea"
while True:
try:
op1=(int(input("Introduce el primer número: ")))
op2=(int(input("Introduce el segundo número: ")))
break # Leave the while
except ValueError:
print('Los valores introducidos no son correctos. Intentalo otra vez')
operacion=input("Introduce la operación a realizar (suma,resta,multiplica,divide): ")
if operacion=="suma":
print(suma(op1,op2))
elif operacion=="resta":
print(resta(op1,op2))
elif operacion=="multiplica":
print(multiplica(op1,op2))
elif operacion=="divide":
print(divide(op1,op2))
else:
print ("Operación no contemplada")
print("Operación ejecutada. Continuación de ejecución del programa ")
#####
def dividir():
try:
option1 = (float(input("Introduce el primer número: ")))
option2 = (float(input("Introduce el segundo número: ")))
print('La división es: ' + str(option1 / option2))
except ValueError:
print('El valor introducido es erroneo')
except ZeroDivisionError:
print('No se puede dividir entre 0')
except: # Captura cualquier tipo de excepción
print('Ha ocurrido un error')
finally:
print('Calculo finalizado')
# Si el try no tiene 'except' pero si tiene 'finally' el programa caerá hasta haber ejecutado el finally
dividir()