formation-git/fichier.py
2018-09-23 23:27:56 +02:00

7 lines
123 B
Python

def say(sentence):
print("I'm told to say :", end="")
print(sentence)
if __name__=='__main__':
say("Hello !")