8. Main program - JulTob/Python GitHub Wiki
A piece of code can be launch if the module is executed directy.
def main():
code
if __name__=="__main__":
main()
A piece of code can be launch if the module is executed directy.
def main():
code
if __name__=="__main__":
main()