Explain the exp () method used in Python for calculating indices

Source: Internet
Author: User
Tags in python

This article introduces the exp () method used in the calculation of indices in Python, which is the basic method in the introduction of Python, and can be consulted by friends.

The exp () method returns the exponential X:ex.

Grammar

The following is the syntax for the exp () method:

?

1 2 3 Import math Math.exp (x)

Note: This function is not directly accessible, so we need to import the math module, and then we need to call this function with the static object of math.

Parameters

X--This is a numeric expression

return value

This method returns the exponent X:ex.

Example

The following example shows the use of the exp () method.

?

1 2 3 4 5 6 7 8 #!/usr/bin/python Import Math # This would import Math module print ' Math.exp ( -45.17): ", Math.exp ( -45.17) print" MATH.E XP (100.12): ", Math.exp (100.12) print" Math.exp (100.72): ", Math.exp (100.72) print" Math.exp (119L): ", Math.exp (119L) p Rint "Math.exp (Math.PI):", Math.exp (Math.PI)

When we run the above program, it produces the following results:

?

1 2 3 4 5 Math.exp ( -45.17): 2.41500621326e-20 math.exp (100.12): 3.03084361407e+43 math.exp (100.72): 5.52255713025e+43 math.exp (119L): 4.7978133273e+51 math.exp (Math.PI): 23.1406926328

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.