Skip to content

Instantly share code, notes, and snippets.

@beyonddream
beyonddream / py_coding_tips.md
Last active July 4, 2023 19:02
Python Coding cheat sheet

Python Coding Tips for intermediate programmers

Note: Most of the example codes are adapted from the excellent 'Learning Python' by Fabrizio Romano

Python code style

Refer to PEP8 - https://www.python.org/dev/peps/pep-0008/

How to add an image to a gist

  1. Create a gist if you haven't already.
  2. Clone your gist:
    # make sure to replace `<hash>` with your gist's hash
    git clone https://gist.github.com/<hash>.git # with https
    git clone git@gist.github.com:<hash>.git     # or with ssh