def goodbye(): nom = str(input("What's your name?")) print("Goodbye " + nom) def test(): # c'est un test noms = ["paul", "marc", "mathieu", "luc"] for element in noms: print(goodbye(element)) goodbye()