新陈代谢
Posted llhhcc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新陈代谢相关的知识,希望对你有一定的参考价值。
""" BMR计算 1.0 """ def main(): """ 主函数 """ #性别 gender=‘男‘ #体重70 weight= 70 height= 175 #年龄25 age= 25 if gender ==‘男‘: bmr=13.7*weight+5.0*height-6.8*age+66 elif gender==‘女‘: bmr = 9.6 * weight + 1.8 * height - 4.7 * age + 655 else: bmr=-1 if bmr!=-1: print(‘基础代谢率(打卡)‘,bmr) else: print(‘暂不支持该性别‘) if __name__ ==‘main‘: main()
以上是关于新陈代谢的主要内容,如果未能解决你的问题,请参考以下文章