Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python – cmath.e Constant

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.e Constant is used to get the eular’s number.

Syntax: cmath.e

Returns: Return the e value.

Below examples illustrate the use of above function:

Example #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)

Output:

2.718281828459045

Example 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)

Output:

7.3890560989306495
My Personal Notes arrow_drop_up
Last Updated : 28 May, 2020
Like Article
Save Article
Similar Reads
Related Tutorials