python計算在月球的體重
說明
1、重量計算,月球上的物體重量為地球上的16.5%。
2、如果地球上每年增加0.5公斤,編寫程序輸出未來10年地球和月球上的體重狀況。
實例
current_weight=float(input('當前體重kg:'))
foriinrange(1,11):
current_weight+=0.5
moon_weight=current_weight*16.5/100
print('第{:d}年,地球體重{:.2f}kg,月球體重{:.2f}kg'.format(
i,current_weight,moon_weight
))
以上就是python計算在月球體重的方法,看起來還是很有意思的。大家如果對自己在月球上的體重好奇,可以采取本篇的計算方法。更多Python學習教程請關注IT培訓機構:千鋒教育。