计算若干名学生的平均身高(单位:米)。
n=int(input("请输入学生人数:"))
s=
for i in range(n):
h=float(input("请输入学生的身高(米):"))
=s+h
s= #平均身高
print("平均身高(米)为:",s)