Operaciones aritméticas con python

De ChuWiki

Entramos en la consola de python con el comando

$ python
Python 2.5.2 (r252:60911, Apr 21 2008, 11:12:42) 
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

Ahora vamos ejecutando varias operaciones para ver el resultado:

>>> # suma
... 3+5
8
 
>>> # resta
... 3-4
-1
>>> # multiplicacion
... 2*3
6
>>> 2.0*3
6.0
>>> # division
... 3/2
1
>>> 3.0/2
1.5
>>> # cociente
... 3//2
1
>>> 3.0//2
1.0
>>> # resto
... 3%2
1
>>> 3.0%2
1.0
>>> # potencia
... 3**2
9
>>> 3**0.5
1.7320508075688772
>>> pow(3,2)
9


Algunas funciones matemáticas[editar]

>>> # valor absoluto
... abs(-3.0)
3.0
>>> # complejos
... complex(2,3)
(2+3j)
>>> complex(2,3)*complex(3,4)
(-6+17j)
>>> a=complex(3,5)
>>> a.real
3.0
>>> a.imag
5.0
>>> # maximo y minimo
... max(3,45,6,7)
45
>>> min(32,23,2,13,4.3)
2
>>> # redondeo
... round(34.5)
35.0
>>> round(35.345,1)   # debería dar 35.3 un decimal
35.299999999999997


La clase math[editar]

Es importante importar la clas math antes de operarar con ella

>>> import math
>>> # raiz cuadrada
... math.sqrt(2)
1.4142135623730951
>>> # PI
... math.pi
3.1415926535897931
>>> # funciones trigonométricas
... math.sin(math.pi)
1.2246063538223773e-16
>>> # logaritmos
... math.log(11)
2.3978952727983707


Enlaces[editar]