Python – cmath.e constante

El módulo cMath contiene una serie de funciones que se utilizan para operaciones matemáticas con números complejos. La constante cmath.e se utiliza para obtener el número de eular.

Sintaxis: cmath.e

Devuelve: Devuelve el valor de e .

Los siguientes ejemplos ilustran el uso de la función anterior:

Ejemplo 1 : 

Python3

# Python code to implement
# the cmath.e constant
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# Print the value of Euler e 
val = cmath.e 
print(val)

Producción:

2.718281828459045

Ejemplo 2:

Python3

# Python code to implement
# the cmath.e constant
        
# importing "cmath"
# for mathematical operations  
import cmath 
    
# Print the value of e ^ 2
val = cmath.e ** 2
print(val)

Producción:

7.3890560989306495

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *