#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ====================================================================
# Chapitre 13 Exercice 26                                       Enoncé  
# ====================================================================

nom=['Io','Europe','Ganymède','Callisto']
a=[4.22,6.71,10.71,18.84] # demi grand axe a de l'orbite (en 10^8 m)
T=[1.77,3.55,7.16,16.7]   # période de révolution T (en jour)

n=len(nom)
k=[... A compléter ... for i in range(n)]

print('Résultats en unités SI')
for i in range(n):
    print(nom[i],':','%.2e'%k[i])
    
    







