You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These files, as written, are aimed at command-line execution, but because `if __name__ == '__main__':` only fires when run on the command line, it can also be included in another python script if need be.
2
3
It uses doctests (which fire when run from the command line with a `-t` / `--test` flag) because I like doctests because they're the simplest way to add tests to your code, and tests in your code are a good way to help remind future-you how current-you imagined you'd be using the code you wrote.
4
5
The code you want to execute goes in the main() method.
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page
or contact support.