""" NOMBRES DIVISIBLES PAR 9""" from math import * R="o" while R=="o": N=input("Jusqu'à quel nombre ?: ") N=int(N) k=1 D=[] while k<=N: if k%9==0: D.append(k) k=k+1 print (D) R=input("Recommencer ?o/n")