×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

math.exp() method with example in Python

Python math.exp() method: Here, we are going to learn about the math.exp() method with example in Python.
Submitted by IncludeHelp, on April 17, 2019

Python math.exp() method

math.exp() method is a library method of math module, it is used to get the number in exponential form, it accepts a number and returns the number in the exponential format (if the number is x, it returns e**x.

Note: If anything is passed except the number, the method returns a type error, "TypeError: a float is required".

Syntax of math.exp() method:

    math.exp(n)

Parameter(s): n – an integer or a float number.

Return value: float – it returns a float value that is an exponential form of the number n.

Example:

    Input:
    a = 111.111

    # function call
    print(math.exp(a))

    Output:
    1.7984326512709283e+48

Python code to demonstrate example of math.exp() method

# Python code demonstrate example of 
# math.exp() method
import math

# numbers

a = 0
b = 245
c = -102.34
d = 111.111
e = -123.456

# printing values in exp format
print("exp(a): ", math.exp(a))
print("exp(b): ", math.exp(b))
print("exp(c): ", math.exp(c))
print("exp(d): ", math.exp(d))
print("exp(e): ", math.exp(e))

Output

exp(a):  1.0
exp(b):  2.5243412626998188e+106
exp(c):  3.583461328080821e-45
exp(d):  1.7984326512709283e+48
exp(e):  2.4195825412645934e-54
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.