Con la ayuda del cmath.sqrt()
método, podemos encontrar el valor de la raíz cuadrada de cualquier número pasándolo al cmath.sqrt()
método.
Sintaxis:
cmath.sqrt(value)
Retorno: Retorna la raíz cuadrada de cualquier valor.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el cmath.sqrt()
método, podemos obtener los valores de la raíz cuadrada pasándole el valor.
# importing cmath library import cmath # using cmath.sqrt() method gfg = cmath.sqrt(4) print(gfg)
Producción :
(2+0j)
Ejemplo #2:
# importing cmath library import cmath # using cmath.sqrt() method gfg = cmath.sqrt(3) print(gfg)
Producción :
(1.7320508075688772+0j)
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA