The code used in my video series. Interested? Watch Here!
01 - Install Python
02 - Run a Python File
03 - Statements & Blocks
04 - Comments & Docstring
05 - Identifier Rules
06 - Number Data Types
07 - String Data Type
08 - Raw & Formatted Strings
09 - Format Specification
10 - Lists
11 - More on Lists
12 - Tuples
13 - Sets
14 - Dictionary
15 - Arithmetic Operators
16 - Bitwise Operators
17 - Assignment Operators
18 - Comparison Operators
19 - Membership & Identity Operators
20 - Logical Operators
21 - If Statements
22 - Ternary Operator
23 - User Input
24 - Conditional Loops
25 - Iterative Loops
26 - Comprehension & Nested Loops
27 - Generator Expressions
28 - Command Line Arguments
29 - Functions - Global
30 - Functions - Avoiding globals
31 - Functions - Return
32 - Functions - Argument Types
33 - Generator Functions
34 - Lambdas
35 - Random Numbers & Challenge
36 - Scope
37 - Inner Functions & Challenge Answer
38 - Name Binding & @Decorators
39 - Classes - intro