Python 计算体重
月球上体重是在地球上的16.5% 假设在地球上每年增长0.5kg 算出10年后在地球和月球的体重
import math
thisWeight = int(input("请输入当前体重:"))
increase = 0.5
moonWeight = 0.165
for i in range(10):
thisWeight = thisWeight + 0.5
moomW = thisWeight * moonWeight
print("10年后在地球上的体重为:{:.2f}\n10年后在月球上的体重为:{:.2f}".format(thisWeight,moomW))