diff --git a/Notas/01_Introduccion/03_Numeros.md b/Notas/01_Introduccion/03_Numeros.md index 1ad9ed1..7fe0e62 100644 --- a/Notas/01_Introduccion/03_Numeros.md +++ b/Notas/01_Introduccion/03_Numeros.md @@ -149,8 +149,8 @@ abs(x) Valor absoluto Estas son las mismas operaciones que con los enteros. Otra operaciones usuales se encuentran en el módulo `math`. ```python - import math - a = math.sqrt(x) +import math +a = math.sqrt(x) b = math.sin(x) c = math.cos(x) d = math.tan(x)