问题:
根据父母身高预测儿子的身高。
需求方法:
从键盘输入父母的身高,并使用eval()或float()转换输入的数据类型。计算公式:儿子身高=(父亲身高+母亲身高)*0.54。
编程结果:
father_height = eval(input('请输入父亲的身高:')) mother_height = eval(input('请输入母亲的身高:')) son_height = (father_height+mother_height) * 0.54 print('预测儿子的身高:',son_height)
运行结果截图: