Python Math exp() 函数

Python Math exp() 函数

Python Math exp() 方法返回x的指数e^x。

Python Math exp() 语法

以下是 exp() 方法的语法:

import math

math.exp( x )

注意:exp()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。

Python Math exp() 参数

  • x – 数值表达式。

Python Math exp() 返回值

返回x的指数,ex。

Python Math exp() 示例1

以下展示了使用 exp() 方法的实例:

#!/usr/bin/python3

import math

test_int = 4
test_neg_int = -3
test_float = 0.00

# checking exp() values with different numbers
print (math.exp(test_int))
print (math.exp(test_neg_int))
print (math.exp(test_float))

输出:

Python Math exp() 函数

Python Math exp() 示例2

#!/usr/bin/python3

import math

# checking for string
print (math.exp("25"))

输出:

Python Math exp() 函数

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程