说明
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学习指路:Python基础教程