nombre = input( "Saisir un nombre: " )

try:
    nombre = float( nombre )
    assert nombre > 0
    resultat = 20.0 / nombre

except AssertionError:
        print("Le nombre saisi doit être supérieur à 0.")

except ValueError:
    print ("Vous devez entrer un nombre.")

else:
    print ("%.2f / %.2f = %.2f" % ( 20.0, nombre, resultat))

finally:
    print('Fin du programme.')
        
