How to calculate exponential (x to the power of e) of a number in Python

1 Answer

0 votes
import math

# x to the power of e

num1 = 8
num2 = -2
num3 = 0.00
   
print( f"Exponential of {num1} is:", math.exp(num1))  
print( f"Exponential of {num2} is:", math.exp(num2))  
print( f"Exponential of {num3} is:", math.exp(num3))  



'''
run:

Exponential of 8 is: 2980.9579870417283
Exponential of -2 is: 0.1353352832366127
Exponential of 0.0 is: 1.0

'''

 



answered Nov 30, 2022 by avibootz
...