👏👏 Welcome to examplehub/Python ! Before sending your pull requests. Please make sure that you read the whole guidelines.
- Fork the project to your github account & clone locally computer.
- Create an upstream remote and sync your local copy before you branch.
- Branch for each separate piece of work.
- Do the work, write good commit messages, and read the
CONTRIBUTING.md
. - Push to your origin repository.
- Create a new PR in GitHub.
- Waiting to be review by the maintainers.
- Please follow PEP 8 Coding Style.
- Single letter variable names are old school so please avoid them unless their life only spans a few lines.
- Expand acronyms because
gcd()
is hard to understand butgreatest_common_divisor()
is not. - Write
test unit
to test all your functions. - More details about Code Style.