The exp () method used to calculate the index in Python

Source: Internet
Author: User

The exp () method used to calculate the index in Python

This article mainly introduces the exp () method used to calculate the index in Python, which is a basic method required for getting started with Python. For more information, see

Returns x: ex.

Syntax

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

?

1

2

3

Import math

 

Math. exp (x)

Note: This function cannot be directly accessed. Therefore, we need to import the math module and then use the static object of math to call this function.

Parameters

X -- this is a numeric expression.

Return Value

Returns 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 will import math module

 

Print "math. exp (-45.17):", math. exp (-45.17)

Print "math. exp (100.12):", math. exp (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)

When we run the above program, it will produce the following results:

?

1

2

3

4

5

Math. exp (-45.17): 2.000000621326e-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.