Python's math module includes the attribute e, which returns the Euler's number e (2.71828...).

#import math module
import math

#Print the value of Euler's number
print(math.e)
math.e
import math

print(math.log(10, math.e))