Il modulo `math` in Python fornisce funzioni matematiche di base e operazioni su vari numeri.
Prima di utilizzarlo, è necessario importarlo nel tuo script Python utilizzando la seguente frase:
```
import math
```
Una volta importato, puoi iniziare ad utilizzare le funzioni del modulo `math`. Ecco alcuni esempi:
1. math.sqrt(x): Restituisce la radice quadrata di x.
```
import math
print(math.sqrt(16)) # questo stamperà 4.0
```
1. math.pow(x, y): Restituisce x elevato alla potenza y.
```
import math
print(math.pow(2, 3)) # questo stamperà 8.0
```
1. math.pi: Restituisce il valore di Pi.
```
import math
print(math.pi) # questo stamperà il valore di Pi
```
1. math.cos(x): Restituisce il coseno di x radianti.
```
import math
print(math.cos(math.pi)) # questo stamperà -1.0
```
1. math.log(x, [base]): Con un argomento, restituisce il logaritmo naturale di un numero, o il logaritmo di un numero con base specifica.
```
import math
print(math.log(1000, 10)) # questo stamperà 3.0
```
Il modulo math ha molte altre funzioni che ti aiutano a gestire le operazioni matematiche nel tuo script Python. Puedes consultar la documentación oficial de Python para obtener una lista completa de las funciones y cómo usarlas.