registre = []
ligne = 0
rep = "..."
while rep == "O":
nom = input("Entrez un nom : ")
prenom = input("Entrez un prénom : ")
adresse = input("Entrez une adresse : ")
age = ...(input("Entrez un âge : "))
taille = ...(input("Entrez une taille (en cm) : "))
poids = ...(input("Entrez un poids (en kg) : "))
ligne ...
registre....([ligne,{'nom':nom,'prenom':prenom,'adresse':adresse,'age':age,'taille':taille,'poids':poids}])
rep = input("Voulez-vous poursuivre la saisie (O = oui) ? ")
rep....()