请用Python身高测算程序
时间: 2024-03-21 19:36:10 浏览: 122
python代码编写计算器小程序
当然,我可以为您介绍一个用Python编写的身测算程序。以下是一个简单的示例:
```python
def height_calculator():
gender = input("请输入您的性别(男/女):")
if gender == "男":
father_height = float(input("请输入父亲的身高(单位:厘米):"))
mother_height = float(input("请输入母亲的身高(单位:厘米):"))
height = (father_height + mother_height) * 0.54
elif gender == "女":
father_height = float(input("请输入父亲的身高(单位:厘米):"))
mother_height = float(input("请输入母亲的身高(单位:厘米):"))
height = (father_height * 0.923 + mother_height) / 2
else:
print("输入有误,请重新运行程序并输入正确的性别。")
return
print("预测的身高为:{:.2f}厘米".format(height))
height_calculator()
```
这个程序会根据输入的性别、父亲身高和母亲身高来预测孩子的身高。请按照程序提示输入相关信息,然后程序会给出预测的身高结果。
阅读全文