-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicios.py
45 lines (34 loc) · 1.06 KB
/
ejercicios.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
#dato = input("Ingrese dato: ")
#lista = ["hola", "mundo", "chanchito", "feliz", "dragones"]
#if lista.count(dato) > 0:
# print("El dato existe", dato)
#else:
#print("El dato no existe :(",dato)
primero = input("Ingrese primer número: " )
try:
primero = int(primero)
except:
primero = "chanchito feliz"
if primero=="chanchito feliz":
print("El valor ingresado no es un entero")
exit()
segundo = input("Ingrese segundo número: ")
try:
segundo = int(segundo)
except:
segundo = "chanchito feliz"
if primero=="chanchito feliz":
print("El valor ingresado no es un entero")
exit()
print("Que operación desea hacer: \n 1)Suma(+)\t2)Resta(-)\t3)Multiplicar(*)\t4)Dividir(/) ")
operacion = input("\nOperación: ")
if operacion == "+" or operacion == "1":
print(primero + segundo)
elif operacion == "-" or operacion == "2":
print(primero - segundo)
elif operacion == "*" or operacion == "3":
print(primero * segundo)
elif operacion == "/" or operacion == "4":
print (primero / segundo)
else :
print ("Operacion incorrecta")