Python exp () function
Describe
The exp () function returns the exponent of X,
Grammar
Import Mathmath.exp (x)
NOTE: exp () is not directly accessible, it needs to be imported into the math module and called by a static object.
Parameters
return value
Returns the exponent of X
Instance
#-*-Coding:utf-8-*-import Math # import Math module print "Math.exp (2):", Math.exp (2) print "Math.exp (100.12):", Math.ex P (100.12) print "Math.exp (100.72):", Math.exp (100.72) print "Math.exp (119L):", Math.exp (119L) print "Math.exp (Math.PI) : ", Math.exp (Math.PI)
Output:
Math.exp (2): 7.38905609893math.exp (100.12): 3.03084361407e+43math.exp (100.72): 5.52255713025e+ 43math.exp (119L): 4.7978133273e+51math.exp (Math.PI): 23.1406926328
Python exp () function
Describe
The exp () function returns the exponent of X,
Grammar
Import Mathmath.exp (x)
NOTE: exp () is not directly accessible, it needs to be imported into the math module and called by a static object.
Parameters
return value
Returns the exponent of X
Instance
#-*-Coding:utf-8-*-import Math # import Math module print "Math.exp (2):", Math.exp (2) print "Math.exp (100.12):", Math.ex P (100.12) print "Math.exp (100.72):", Math.exp (100.72) print "Math.exp (119L):", Math.exp (119L) print "Math.exp (Math.PI) : ", Math.exp (Math.PI)
Output:
Math.exp (2): 7.38905609893math.exp (100.12): 3.03084361407e+43math.exp (100.72): 5.52255713025e+ 43math.exp (119L): 4.7978133273e+51math.exp (Math.PI): 23.1406926328
"Recommended"
1. Share the exp () method instance tutorial for calculating indices in Python
2. Share an example tutorial on writing poc,exp using Python