Python Language
Semplici operatori matematici
Ricerca…
introduzione
Osservazioni
Tipi numerici e loro metaclassi
Il modulo numbers
contiene i metaclassi astratti per i tipi numerici:
sottoclassi | numbers.Number | numbers.Integral | numbers.Rational | numbers.Real | numbers.Complex |
---|---|---|---|---|---|
bool | ✓ | ✓ | ✓ | ✓ | ✓ |
int | ✓ | ✓ | ✓ | ✓ | ✓ |
fractions.Fraction | ✓ | - | ✓ | ✓ | ✓ |
galleggiante | ✓ | - | - | ✓ | ✓ |
complesso | ✓ | - | - | - | ✓ |
decimal.Decimal | ✓ | - | - | - | - |
aggiunta
a, b = 1, 2
# Using the "+" operator:
a + b # = 3
# Using the "in-place" "+=" operator to add and assign:
a += b # a = 3 (equivalent to a = a + b)
import operator # contains 2 argument arithmetic functions for the examples
operator.add(a, b) # = 5 since a is set to 3 right before this line
# The "+=" operator is equivalent to:
a = operator.iadd(a, b) # a = 5 since a is set to 3 right before this line
Combinazioni possibili (tipi predefiniti):
-
int
eint
(dà unint
) -
int
efloat
(dà unfloat
) -
int
ecomplex
(dà uncomplex
) -
float
efloat
(dà unfloat
) -
float
ecomplex
(dà uncomplex
) -
complex
ecomplex
(dà uncomplex
)
Nota: l'operatore +
è anche usato per concatenare stringhe, liste e tuple:
"first string " + "second string" # = 'first string second string'
[1, 2, 3] + [4, 5, 6] # = [1, 2, 3, 4, 5, 6]
Sottrazione
a, b = 1, 2
# Using the "-" operator:
b - a # = 1
import operator # contains 2 argument arithmetic functions
operator.sub(b, a) # = 1
Combinazioni possibili (tipi predefiniti):
-
int
eint
(dà unint
) -
int
efloat
(dà unfloat
) -
int
ecomplex
(dà uncomplex
) -
float
efloat
(dà unfloat
) -
float
ecomplex
(dà uncomplex
) -
complex
ecomplex
(dà uncomplex
)
Moltiplicazione
a, b = 2, 3
a * b # = 6
import operator
operator.mul(a, b) # = 6
Combinazioni possibili (tipi predefiniti):
-
int
eint
(dà unint
) -
int
efloat
(dà unfloat
) -
int
ecomplex
(dà uncomplex
) -
float
efloat
(dà unfloat
) -
float
ecomplex
(dà uncomplex
) -
complex
ecomplex
(dà uncomplex
)
Nota: l'operatore *
viene anche utilizzato per la concatenazione ripetuta di stringhe, elenchi e tuple:
3 * 'ab' # = 'ababab'
3 * ('a', 'b') # = ('a', 'b', 'a', 'b', 'a', 'b')
Divisione
Python esegue la divisione integer quando entrambi gli operandi sono numeri interi. Il comportamento degli operatori di divisione di Python è cambiato da Python 2.xe 3.x (vedere anche Divisione Integer ).
a, b, c, d, e = 3, 2, 2.0, -3, 10
In Python 2 il risultato dell'operatore '/' dipende dal tipo di numeratore e denominatore.
a / b # = 1
a / c # = 1.5
d / b # = -2
b / a # = 0
d / e # = -1
Si noti che poiché sia a
che b
sono int
s, il risultato è un int
.
Il risultato è sempre arrotondato per difetto (pavimentato).
Poiché c
è un float, il risultato di a / c
è un float
.
Puoi anche usare il modulo operatore:
import operator # the operator module provides 2-argument arithmetic functions
operator.div(a, b) # = 1
operator.__div__(a, b) # = 1
Cosa succede se si desidera la divisione float:
Consigliato:
from __future__ import division # applies Python 3 style division to the entire module
a / b # = 1.5
a // b # = 1
Va bene (se non si desidera applicare all'intero modulo):
a / (b * 1.0) # = 1.5
1.0 * a / b # = 1.5
a / b * 1.0 # = 1.0 (careful with order of operations)
from operator import truediv
truediv(a, b) # = 1.5
Non raccomandato (può sollevare l'errore TypeError, ad es. Se l'argomento è complesso):
float(a) / b # = 1.5
a / float(b) # = 1.5
L'operatore '//' in Python 2 forza la divisione a pavimento indipendentemente dal tipo.
a // b # = 1
a // c # = 1.0
In Python 3 l'operatore /
esegue la divisione "true" indipendentemente dai tipi. L'operatore //
esegue la divisione di piano e mantiene il tipo.
a / b # = 1.5
e / b # = 5.0
a // b # = 1
a // c # = 1.0
import operator # the operator module provides 2-argument arithmetic functions
operator.truediv(a, b) # = 1.5
operator.floordiv(a, b) # = 1
operator.floordiv(a, c) # = 1.0
Combinazioni possibili (tipi predefiniti):
-
int
eint
(fornisce unint
in Python 2 e unfloat
in Python 3) -
int
efloat
(dà unfloat
) -
int
ecomplex
(dà uncomplex
) -
float
efloat
(dà unfloat
) -
float
ecomplex
(dà uncomplex
) -
complex
ecomplex
(dà uncomplex
)
Vedere PEP 238 per ulteriori informazioni.
Exponentation
a, b = 2, 3
(a ** b) # = 8
pow(a, b) # = 8
import math
math.pow(a, b) # = 8.0 (always float; does not allow complex results)
import operator
operator.pow(a, b) # = 8
Un'altra differenza tra il pow
math.pow
e math.pow
è che il pow
incorporato può accettare tre argomenti:
a, b, c = 2, 3, 2
pow(2, 3, 2) # 0, calculates (2 ** 3) % 2, but as per Python docs,
# does so more efficiently
Funzioni speciali
La funzione math.sqrt(x)
calcola la radice quadrata di x
.
import math
import cmath
c = 4
math.sqrt(c) # = 2.0 (always float; does not allow complex results)
cmath.sqrt(c) # = (2+0j) (always complex)
Per calcolare altre radici, come una radice cubica, aumentare il numero al reciproco del grado della radice. Questo potrebbe essere fatto con qualsiasi funzione esponenziale o operatore.
import math
x = 8
math.pow(x, 1/3) # evaluates to 2.0
x**(1/3) # evaluates to 2.0
La funzione math.exp(x)
calcola e ** x
.
math.exp(0) # 1.0
math.exp(1) # 2.718281828459045 (e)
La funzione math.expm1(x)
calcola e ** x - 1
. Quando x
è piccolo, questo fornisce una precisione significativamente migliore rispetto a math.exp(x) - 1
.
math.expm1(0) # 0.0
math.exp(1e-6) - 1 # 1.0000004999621837e-06
math.expm1(1e-6) # 1.0000005000001665e-06
# exact result # 1.000000500000166666708333341666...
logaritmi
Per impostazione predefinita, la funzione math.log
calcola il logaritmo di un numero, base e. Opzionalmente puoi specificare una base come secondo argomento.
import math
import cmath
math.log(5) # = 1.6094379124341003
# optional base argument. Default is math.e
math.log(5, math.e) # = 1.6094379124341003
cmath.log(5) # = (1.6094379124341003+0j)
math.log(1000, 10) # 3.0 (always returns float)
cmath.log(1000, 10) # (3+0j)
math.log
varianti speciali della funzione math.log
per diverse basi.
# Logarithm base e - 1 (higher precision for low values)
math.log1p(5) # = 1.791759469228055
# Logarithm base 2
math.log2(8) # = 3.0
# Logarithm base 10
math.log10(100) # = 2.0
cmath.log10(100) # = (2+0j)
Operazioni interne
È normale che all'interno delle applicazioni sia necessario avere un codice come questo:
a = a + 1
o
a = a * 2
C'è una scorciatoia efficace per queste operazioni sul posto:
a += 1
# and
a *= 2
Qualsiasi operatore matematico può essere utilizzato prima del carattere '=' per eseguire un'operazione inplace:
-
-=
decrementa la variabile in atto -
+=
incrementa la variabile sul posto -
*=
moltiplica la variabile sul posto -
/=
divide la variabile in posizione -
//=
floor divide la variabile al posto # Python 3 -
%=
restituisce il modulo della variabile sul posto -
**=
aumenta a una potenza in atto
Esistono altri operatori sul posto per gli operatori bit a bit ( ^
, |
etc)
Funzioni trigonometriche
a, b = 1, 2
import math
math.sin(a) # returns the sine of 'a' in radians
# Out: 0.8414709848078965
math.cosh(b) # returns the inverse hyperbolic cosine of 'b' in radians
# Out: 3.7621956910836314
math.atan(math.pi) # returns the arc tangent of 'pi' in radians
# Out: 1.2626272556789115
math.hypot(a, b) # returns the Euclidean norm, same as math.sqrt(a*a + b*b)
# Out: 2.23606797749979
Si noti che
math.hypot(x, y)
è anche la lunghezza del vettore (o distanza euclidea) dall'origine(0, 0)
al punto(x, y)
.Per calcolare la distanza euclidea tra due punti
(x1, y1)
e(x2, y2)
puoi usaremath.hypot
come seguemath.hypot(x2-x1, y2-y1)
Per convertire da radianti -> gradi e gradi -> radianti usa rispettivamente math.degrees
e math.radians
math.degrees(a)
# Out: 57.29577951308232
math.radians(57.29577951308232)
# Out: 1.0
Modulo
Come in molti altri linguaggi, Python usa l'operatore %
per calcolare il modulo.
3 % 4 # 3
10 % 2 # 0
6 % 4 # 2
O utilizzando il modulo operator
:
import operator
operator.mod(3 , 4) # 3
operator.mod(10 , 2) # 0
operator.mod(6 , 4) # 2
Puoi anche usare numeri negativi.
-9 % 7 # 5
9 % -7 # -5
-9 % -7 # -2
Se è necessario trovare il risultato della divisione e del modulo intero, è possibile utilizzare la funzione divmod
come scelta rapida:
quotient, remainder = divmod(9, 4)
# quotient = 2, remainder = 1 as 4 * 2 + 1 == 9