DISTANCE_IN_MILES_TO_MOON = 238900 def h( x ) : ''' Solves the luna.h() homework 24 problem description ''' pass ''' DO NOT MODIFY THE BELOW CODE '''' if ( __name__ == '__main__' ) : import luna v1 = 119.45; t1 = luna.h( v1 ); print( 'h(', v1, ') =', t1 ) v2 = 597.25; t2 = luna.h( v2 ); print( 'h(', v2, ') =', t2 )