Setup environment

  1. Install python.
  2. Install VS Code

Leaning resources

How to

  • Add packages
    • pip install [package name]
    • Example:
      • pip install numpy
  • Find package version
    • pip show [package name]
  • Find python version
    • Open command prompt
    • write:
      • python -V
  • Comments
    • Single line of code #
    • few lines of code “”” and then end with “””

Comments are closed.