# Si le code ci-dessous est enregistré dans un fichier hello.py # Il pourra être exécuté par python -m hello def main(): print("Hello World") if __name__ == "__main__": # execute only if run as a script main()