Please explain to me the difference between them?

import math

print math.exp(2)

print

print 2 ** 3

============================

7.38905609893

8
link|improve this question
feedback

3 Answers

You are squaring e with math.exp(2), e is 2.71828183, see here

With 2 ** 3, you are raising 2 to the third power.

link|improve this answer
feedback

You're confusing math.exp() with math.pow(): math.pow(2, 3) == float(2**3).

link|improve this answer
feedback

math.exp(2) is e raised to the second power, 2 ** 3 is 2 raised to the 3rd power.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.