Skip to content
Snippets Groups Projects
Select Git revision
  • 97b9de1d541819d09e472ce8e8662ee34dfd2146
  • main default
  • tp2
  • tp1
  • tp3
  • tp2-correction
  • tp1-correction
  • admins
8 results

test_calculator.py

Blame
  • Forked from an inaccessible project.
    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()