======Python Help and Hints====== * [[python_virtual_env|Python Virtual Environment]] * [[python_setup|Python Project Setup]] * [[python_testing|Python Testing]] * [[python_formatting|Python Formatting, checking code syntax]] * [[python_tricks|Python TRICKS!]] * [[python_tips|Python tips]] * [[http://google.github.io/styleguide/pyguide.html|Google Python Style Guide]] * [[https://www.programiz.com/python-programming/property|Commenting]] * [[https://thomas-cokelaer.info/tutorials/sphinx/rest_syntax.html|Rst and Sphinx formatting]] What to put at the top (I always forget!) #!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys import os print("HERE") [[https://www.ics.uci.edu/~pattis/ICS-33/lectures/complexitypython.txt|Code Complexity Cheat-Sheet!]]