solo-blog ?0 ⭐️3 ?0 ?https://www.cjzshilong.cn ✍️ 邯城往事 - >>> 展颜笑夙愿,一笑泯恩仇 <<< 2. work_scripts Python ?0 ⭐️1 ?0 my scripts on work 3. L2TP-OVER-IPSEC-Manager-Web Python ?1 ⭐️1 ?0 l2tp over ipsec 账户管理系统 4. cuijianzhe.github.io HTML ?1 ⭐️0 ?0 ?https://cuijianzhe.github.io Solo 导出的静态站点。 5. L2TP-OVER-IPSEC-ManagerWeb Python ?1 ⭐️0 ?0 6. Django_study P....... 我在 GitHub 上的开源项目 GitHub
两个月前需求:使用python3做一个将观测数据编译产出成bufr数据的一个工具 刚刚完成初版,其中的数据文件路径和数据内容格式还需要仔细核对,但整体逻辑已实现,剩下的工作时间可能会用来完善它 Anaconda3 The open-source Anaconda Distribution is the easiest way to perform Python/R data science and machine learning on Linux, Windows, and Mac OS X. With over 11 million users worldwide, it is the industry standard for developing, testing, and training on a single machine, enabling individual data scientists to: Quickly download 1,500+ Python/R data science packages Manage libraries, dependencie.... py项目中学到的知识梳理 Python
一、字符串、列表、元组、字典、集合练习 1.1 BMI计算输出 BMI指数(Body Mass Index) 以称身体质量指数 BMI值计算公式: BMI = 体重(公斤) / 身高的平方(米) 例如: 一个人69公斤,身高是173公分 BMI = 69 / 1.73**2 = 23.05 标准表: BMI < 18.5 体重过轻 18.5 <= BMI < 24 体重正常 BMI > 24 体重过重 要求: 输入身高的体重,打印出BMI的值并打印体重状况 #!/bin/python3 Height = float(input('请输入身高(米):')) Weight = float(input('请输入体重(公斤):')) BMI = Weight / Height **2 print('%.2f'%BMI) if BMI < 18.5: print('您的体重过轻,BMI值为:%.2f' %BMI) elif BMI < 24: print('您的体重正常,BMI值为:%.2f'%BMI) else: print('您的体重过重,BMI值为:%..... python练习题 Python