当前位置: 首页 > 问答 > Python编程 > 问答详情

python中的exp是什么

09月28日 05:50208人阅读
刘老师 Python编程

Python exp() 函数

描述

exp() 函数返回 x 的指数,。

语法

import math
math.exp(x)

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

参数

x -- 数值表达式。

返回值

返回 x 的指数,。

实例

# -*- coding: UTF-8 -*-
import math   # 导入 math 模块
print "math.exp(2) : ", math.exp(2)
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)

输出:

math.exp(2) :  7.38905609893
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

python学习网,大量的免费python视频教程,欢迎在线学习!

来自标签:

职业技能申请领取
您的姓名
您的电话
意向课程
点击领取

环球青藤

官方QQ

扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群

问答来自

刘老师 Python编程
好评率85% 浏览208

相关问题

python中如何实现列表去重不打乱顺序?
谷老师 Python编程
Python中数值类型有哪几种?
宋老师 Python编程
如何用python中max()求取列表最大值?
魏老师 Python编程
课程咨询 学员服务 公众号

扫描关注微信公众号

APP

扫描下载APP

返回顶部