Usuario:Daniel Mendoza:DrPython:Ejercicio 2.1.2
Apariencia
#Evaluar las raíces de 4, 2 y -1. Calcular la tangente de un ángulo. # Raíces: import math math.sqrt(4) math.sqrt(2) math.sqrt(-1) #Tangente de un ángulo: import math math.tan(ángulo en radianes) import math math.tan(math.pi)