def jump(height,planet):
if planet == '月球':
result = height*6
if planet == '火星':
result = height*2.5
if planet == '木星':
result = height*0.4
if planet == '坤坤星':
result = height*3.14
sentence = '你可以在'+planet+'跳'+str(result)+'米'
print(sentence)
jump(1, '坤坤星')
jump(1, '木星')
jump(1, '火星')