Skip to content
Snippets Groups Projects
Select Git revision
  • fd0c71adba8f7fb8acaab8791d478ff1ff702a91
  • main default protected
  • master
3 results

exercice1.py

Blame
  • Forked from Alexis LEBIS / IPAPI 2023 Students Corrections
    Source project has a limited visibility.
    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