python函数指数 python写指数函数( 二 )


2、利用numpy构造出自变量 , 利用定义的指数函数来计算出因变量 。
3、有了自变量和因变量的一些散点,模拟平时画函数操作,描点绘图 。
求一道Python题 , 是关于定义函数和身体指数的,谢谢各位大神啦?。。?/h2>按照题目要求编写的Python程序如下
def calBMI(height,weight):
BMI=weight/(height*height)
if BMI18.5:
return [BMI,"过轻"]
elif BMI24:
return [BMI,"正常"]
elif BMI28:
return [BMI,"过重"]
else:
return [BMI,"肥胖"]
import re
s=input("请输入你的身高(米)和体重(公斤)【逗号隔开】:")
s1=re.split(r'[, , ]',s)
height=float(s1[0])
weight=float(s1[1])
name="李子健"
bmi=calBMI(height,weight)
print("{}的测算结果为:".format(name))
print("BMI:%.2f"%bmi[0])
print(bmi[1])
源代码(注意源代码的缩进)
怎么在python中定义指数函数您可以直接调用
import math
math.pow( 2, x )
或者
import math
def zhishu(x):
return math.pow(2, x)
python函数指数的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于python写指数函数、python函数指数的信息别忘了在本站进行查找喔 。

推荐阅读