Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 893 Bytes

File metadata and controls

20 lines (15 loc) · 893 Bytes

ET Cohort 6: Recitations Resources for 6.00.2x

This repository contains workshop materials and practice problems to supplement MITx: Introduction to Computational Thinking and Data Science.

Running Python Files in this Repository

  • Running a plain Python script:
    • Simply run the script: $ python path/to/file.py
    • Print the program's trace to the console: $ python -m trace -t path/to/file.py
    • Count how many times each line is executed: $ python -m trace -c path/to/file.py
  • Run a file with Unit Tests:
    • as a script:$ python -m unittest path/to/tests/test_file.py
    • as a module:$ python -m unittest path.to.tests.test_file

MIT Emerging Talent Logo