Skip to content

Latest commit

 

History

History
79 lines (68 loc) · 5.36 KB

python.md

File metadata and controls

79 lines (68 loc) · 5.36 KB

Python

  • Python Setup (Luke Barousse): This tutorial focuses on the basics you need to know to get started in running Python on your computer for data science! For this tutorial we cover the basics on what you need to know and what you need to install.
  • r/learnpthon wiki - a collection of resources for learning all things Python.
  • Python Tutor: a tool for visualizing program memory

Trace Tables

Program Visualization Tools

  • Python Tutor: A website with statement-level stepping for short Python programs and clear memory visualizations.
  • Thonny IDE: A downloadable programming environment with expression-level stepping, memory visualization and debugging tools.
  • Futurecoder IDE: A website with 3 ways to visualize your program execution: Snoop, Python Tutor and Birdseye
  • The trace Module: A built-in python module for creating traces of your program's execution.
    • $ python -m trace -t path/to/file.py
    • $ python -m trace -c path/to/file.py
  • The VSCode Debugger

Errors

Tutorials and Courses

References