formation-git/fichier.py

7 lines
123 B
Python
Raw Normal View History

2018-09-23 21:27:56 +00:00
def say(sentence):
print("I'm told to say :", end="")
print(sentence)
if __name__=='__main__':
say("Hello !")