Skip to content
Snippets Groups Projects
Select Git revision
  • 609cfbc8e309455bcf25f236b7e5e2f2d8fa2024
  • main default
  • tests
3 results

download_server.py

Blame
  • goodbye.py 234 B
    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()