Skip to content
Snippets Groups Projects
Select Git revision
  • 49cc8bd738dff6c44b851a6207f210de2c76d314
  • main default protected
2 results

ToDoList.class

Blame
  • exercice1.py 190 B
    #copy past your code here
    #one function example :
    def foo():
        print("Hello World")
    
    #From here, this is the main of your program
    print("I'll call my function foo")
    foo()
    #End of the prog