forked from CursosWeb/X-Serv-13.6-Calculadora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculadora.py
61 lines (46 loc) · 1.35 KB
/
calculadora.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
"""
Programa que sirve de calculadora e incluye las funciones básica
(sumar (+), restar (-), multiplicar (\*) y dividir (/)).
Para ejecutar el programa:
$ python calculadora.py función operando1 operando2
"""
try:
if len(sys.argv) == 4:
op = sys.argv[1]
op1 = sys.argv[2]
op2 = sys.argv[3]
else:
raise IndexError
except IndexError:
print 'Utiliza: $ python calculadora.py función operando1 operando2'
print
sys.exit()
def suma(x, y):
"""Funcion que suma dos variables"""
return x + y
def resta(x, y):
"""Funcion que resta dos variables"""
return x - y
def multiplicacion(x, y):
"""Funcion que multiplica dos variables"""
return x * y
def division(x, y):
"""Funcion que divide dos variables"""
return x / y
if __name__ == "__main__":
if op is '+':
print 'Resultado: ' + str(suma(float(op1), float(op2)))
elif op is '-':
print 'Resultado: ' + str(resta(float(op1), float(op2)))
elif op is '*':
print 'Resultado: ' + str(multiplicacion(float(op1), float(op2)))
elif op is '/':
try:
print 'Resultado: ' + str(division(float(op1), float(op2)))
except ZeroDivisionError:
print 'Intentas dividir por cero'
else:
print 'El operador no es valido'