I have a lot of simple scripts that calculate some stuff or so. They consist of just a single module.
Should I write main methods for them and call them with the
For a good explanation of the purpose of Python's "main guard" idiom:
What does if __name__ == "__main__": do?