Skip to content

Latest commit

 

History

History
47 lines (40 loc) · 1.39 KB

README.md

File metadata and controls

47 lines (40 loc) · 1.39 KB

Python

Source code from Code For Tomorrow's Python course

Python (Lintly) Python (Lint Action)

Difficulty Level

Source code is organized under 3 difficulty levels:

  1. 1_beginner
  2. 2_intermediate
  3. 3_advanced

Chapters

Under each of the 3 packages, source code is further divided by chapter.

Beginner

  1. chapter1 Intro to Python
  2. chapter2 Data
  3. chapter3 Operators
  4. chapter4 Conditionals
  5. chapter5 Loops
  6. chapter6 Lists
  7. chapter7 String Manipulation

Intermediate

  1. chapter8 Libraries
  2. chapter9 Dictionaries
  3. chapter10 2D Lists
  4. chapter11 Functions
  5. chapter12 Classes

Advanced

  1. chapter13 Special Methods
  2. chapter14 Selection Sort
  3. chapter15 Tuples & Sets
  4. chapter16 Pythonness
  5. chapter17 Exception Handling
  6. chapter18 Recursion
  7. chapter19 Asymptotic Analysis
  8. chapter20 File I/O

Category

Under each chapter, source code is further divided by category:

  1. examples - example code to demo certain programming concepts
  2. practice - practice exercise templates for students to write code
  3. solutions - solutions to practice exercises

The practice template file has the same name as the corresponding solution file.