说明
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基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。