Skip to content
Snippets Groups Projects
Select Git revision
  • 72a2d41f30b63966c40265ceb852c9f79e2e3e72
  • master default
  • Fake_cam
  • Threads
  • ChangementsAmalio
5 results

camera.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()