CS 101: Introduction to Computer Science --- Python
The course can be found here
Your typical CS101 class covering:
- Types
- Variables
- I/O
- Functions
- Conditionals
- Loops
- Objects
- Linear collection (List)
Have administrative privileges and run from cmd
python -m venv --clear --prompt cs101 venv
venv\Scripts\activate.bat
pip install --upgrade pip setuptools wheel
pip install --editable .
python3.11 -m venv --clear --prompt cs101 venv
. venv/bin/activate
pip install --upgrade pip setuptools wheel
SETUPTOOLS_ENABLE_FEATURES="legacy-editable" pip install --editable .
format # just type this
python -m unittest # May need python3
sphinx-build -b html "$SOURCEDIR" "$OUTPUTDIR"
Check out the CONTRIBUTING guidelines.