# Kepler.py
# NAME
# DATE
""" Computes the radii of the Kepler spheres
and compares the ratios with reality.
"""

from math import sqrt

# The "true" orbit radii:
rMercuryTrue = 35.98
rVenusTrue   = 67.24 
rEarthTrue   = 92.90 
rMarsTrue    = 141.60
rJupiterTrue = 483.80
rSaturnTrue  = 890.70


# Start the nesting process
rMercury = 1
print '\nPlanet-Pair       Kepler   Actual'
print( '------------------------------------')