博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python exp() 函数
阅读量:5797 次
发布时间:2019-06-18

本文共 577 字,大约阅读时间需要 1 分钟。

描述

exp() 方法返回x的指数,ex


语法

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

import mathmath.exp( x )

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


参数

  • x -- 数值表达式。

返回值

返回x的指数,ex


实例

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

#!/usr/bin/python3import math   # 导入 math 模块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(math.pi) : ", math.exp(math.pi))

以上实例运行后输出结果为:

math.exp(-45.17) :  2.4150062132629406e-20math.exp(100.12) :  3.0308436140742566e+43math.exp(100.72) :  5.522557130248187e+43math.exp(math.pi) :  23.140692632779267

转载地址:http://dmifx.baihongyu.com/

你可能感兴趣的文章
JavaScript的技巧和最佳实践
查看>>
Android开发:shape和selector和layer-list的(详细说明)
查看>>
Aqua Data Studio中文乱码
查看>>
2g-3g
查看>>
Java反射机制示例
查看>>
hdu5461 Largest Point(沈阳网赛)
查看>>
【Flume】flume于transactionCapacity和batchSize进行详细的分析和质疑的概念
查看>>
安卓小结《1》
查看>>
AMD64 Instruction-Level Debugging With dbx
查看>>
设计模式--装饰图案
查看>>
儿童手表到底安全不全(转自乌云网)
查看>>
普林斯顿大学公开课 算法1-10:并检查集合-高速整合方法优化
查看>>
WinHEC(Windows硬件project产业创新峰会)将2015回归
查看>>
CodeForces - 527D Clique Problem (图,贪心)
查看>>
友盟统计时出的错误
查看>>
[高中作文赏析]跋涉与成功
查看>>
swift-辞典NSDictionary定义,变化的关键,删/加入关键
查看>>
python----slots属性安全类
查看>>
《Programming WPF》翻译 第5章 1.不使用样式
查看>>
.NET垃圾回收:非托管资源,IDispose和析构函数的结合
查看>>