×

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

Home » Python

math.e constant with example in Python

Python math.e constant: Here, we are going to learn about the math.e constant of math module with example in Python.
Submitted by IncludeHelp, on April 19, 2019

Python math.e constant

math.e constant is a predefined constant, which is defined in math module, it returns the value of mathematical constant "e", the value is 2.718281828459045

Syntax of math.e constant:

    math.e

Return value: float – that is the value of mathematical constant "e".

Example:

    Input:
    print(math.e)

    Output:
    2.718281828459045

Python code to demonstrate example of math.e constant

# python code to demonstrate example of 
# math.e constant

# importing math module
import math 

# printing value of e
print("value of e = ", math.e)

Output

value of e =  2.718281828459045

Reference: Python math library

Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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