@@ -10,41 +10,41 @@ See [paper.md](paper.md) file for statement of need.
1010
1111Note: If book chapter is missing, texbook doesn't provide one on the topic; all the notebooks are in ** notebooks** folder
1212
13- | Notebook -> | Think Python3 Textbook |
14- | ---------------------------------------------------------------------- | -------------------------------------------------------- |
15- | [ Ch01-Introduction] ( Ch01-Introduction.ipynb ) | Chapter 1: The way of the program |
16- | [ Ch02-1-Data, Variables, Std IO] ( Ch02-1-Data-Variables-StdIO.ipynb ) | Chapter 2: Data, Variables and Standard IO |
17- | [ Ch02-2-BitwiseOperators] ( Ch02-2-BitwiseOperators.ipynb ) | Number Systems & Bitwise Operators |
18- | [ Ch03-1-Functions-Built-in] ( Ch03-1-Functions-Built-in.ipynb ) | Examples of some built-in functions |
19- | [ Ch03-2-Functions-Library] ( Ch03-2-Functions-Library.ipynb ) | Examples of standard libraries, e.g., math |
20- | [ Ch03-3-Functions-UserDefined] ( Ch03-3-Functions-UserDefined.ipynb ) | Chapter 4 and 6: Functions and Fruitful functions |
21- | [ Ch03-4-Functions-Advanced] ( Ch03-4-Functions-Advanced.ipynb ) | Some advanced topics on function |
22- | [ Ch04-Conditionals] ( Ch04-Conditionals.ipynb ) | Chapter 5: Conditionals |
23- | [ Ch05-Iterations] ( Ch05-Iterations.ipynb ) | Chapter 7: Iteration - for and while loops |
24- | [ Ch06-Strings] ( Ch06-Strings.ipynb ) | Chapter 8: Strings |
25- | [ Ch07-Tuples] ( Ch07-Tuples.ipynb ) | Chapter 9: Tuples |
26- | [ Ch08-1-Lists] ( Ch08-1-Lists.ipynb ) | Chapter 11: Lists |
27- | [ Ch08-2-Lists-Advanced] ( Ch08-2-Lists-Comprehension-Lambda.ipynb ) | List comprehension, Lambda function, map, reduce, filter |
28- | [ Ch09-1-Dictionaries] ( Ch09-1-Dictionaries.ipynb ) | Chapter 20: Dictionaries |
29- | [ Ch09-2-Built-in-DataStructures] ( Ch09-2-Built-in-DataStructures.ipynb ) | zip, set, Collections: OrderedDict, defaultdict, Counter |
30- | [ Ch10-1-Files] ( Ch10-1-Files.ipynb ) | Chapter 13: Files - with, open, text file |
31- | [ Ch10-2-Files-Advanced] ( Ch10-2-Files-Advanced.ipynb ) | Chapter 13: urllib, pickle, binary files, checksums |
32- | [ Ch11-Turtles-Events] ( Ch11-Turtles-Events.ipynb ) | Chapter 3 & 10 |
33- | [ Ch12-ModulesAndPackages] ( Ch12-Modules.ipynb ) | Chapter 12: Modules - built-in and user-defined |
34- | [ Ch13-Recursion] ( Ch13-Recursion.ipynb ) | Chapter 18: Recursion |
35- | [ Ch14-OOP] ( Ch14-OOP.ipynb ) | Chapter 15, 16 Classes and Basics |
36- | [ Ch15-Overloading-Polymorphism] ( Ch15-Overloading-Polymorphism.ipynb ) | Chapter 21 and 22 |
37- | [ Ch16-Exceptions] ( Ch16-Exceptions.ipynb ) | Chapter 19 Exceptions |
38- | [ Ch17-PyGame] ( Ch17-PyGame.ipynb ) | Chapter 17 PyGame |
39- | [ Ch18-Inheritance] ( Ch18-Inheritance.ipynb ) | Chapter 23 Inheritance |
40- | [ Ch19-Unittest] ( Ch19-UnitTest.ipynb ) | UnitTest Framework |
41- | [ Ch20-LinkedLists] ( Ch20-LinkedLists.ipynb ) | Chapter 24 Linked Lists |
42- | [ Ch21-Stacks] ( Ch21-Stacks.ipynb ) | Chapter 25 Stacks |
43- | [ Ch22-Queues] ( Ch22-Queues.ipynb ) | Chapter 26 Queues |
44- | [ Ch23-Trees] ( Ch23-Trees.ipynb ) | Chapter 25 Trees |
45- | [ Ch24-CodeOptimization] ( Ch24-CodeOptimization-ExecutionTime.ipynb ) | Code Optimization |
46- | [ Ch25-DynamicProgramming] ( Ch25-DynamicProgramming.ipynb ) | Intro to Dynamic Programming |
47- | [ Ch26-Sqlite] ( Ch26-SqliteDB.ipynb ) | Sqlite Database |
13+ | Notebook -> | Think Python3 Textbook |
14+ | -------------------------------------------------------------------------------- | -------------------------------------------------------- |
15+ | [ Ch01-Introduction] ( notebooks/ Ch01-Introduction.ipynb) | Chapter 1: The way of the program |
16+ | [ Ch02-1-Data, Variables, Std IO] ( notebooks/ Ch02-1-Data-Variables-StdIO.ipynb) | Chapter 2: Data, Variables and Standard IO |
17+ | [ Ch02-2-BitwiseOperators] ( notebooks/ Ch02-2-BitwiseOperators.ipynb) | Number Systems & Bitwise Operators |
18+ | [ Ch03-1-Functions-Built-in] ( notebooks/ Ch03-1-Functions-Built-in.ipynb) | Examples of some built-in functions |
19+ | [ Ch03-2-Functions-Library] ( notebooks/ Ch03-2-Functions-Library.ipynb) | Examples of standard libraries, e.g., math |
20+ | [ Ch03-3-Functions-UserDefined] ( notebooks/ Ch03-3-Functions-UserDefined.ipynb) | Chapter 4 and 6: Functions and Fruitful functions |
21+ | [ Ch03-4-Functions-Advanced] ( notebooks/ Ch03-4-Functions-Advanced.ipynb) | Some advanced topics on function |
22+ | [ Ch04-Conditionals] ( notebooks/ Ch04-Conditionals.ipynb) | Chapter 5: Conditionals |
23+ | [ Ch05-Iterations] ( notebooks/ Ch05-Iterations.ipynb) | Chapter 7: Iteration - for and while loops |
24+ | [ Ch06-Strings] ( notebooks/ Ch06-Strings.ipynb) | Chapter 8: Strings |
25+ | [ Ch07-Tuples] ( notebooks/ Ch07-Tuples.ipynb) | Chapter 9: Tuples |
26+ | [ Ch08-1-Lists] ( notebooks/ Ch08-1-Lists.ipynb) | Chapter 11: Lists |
27+ | [ Ch08-2-Lists-Advanced] ( notebooks/ Ch08-2-Lists-Comprehension-Lambda.ipynb) | List comprehension, Lambda function, map, reduce, filter |
28+ | [ Ch09-1-Dictionaries] ( notebooks/ Ch09-1-Dictionaries.ipynb) | Chapter 20: Dictionaries |
29+ | [ Ch09-2-Built-in-DataStructures] ( notebooks/ Ch09-2-Built-in-DataStructures.ipynb) | zip, set, Collections: OrderedDict, defaultdict, Counter |
30+ | [ Ch10-1-Files] ( notebooks/ Ch10-1-Files.ipynb) | Chapter 13: Files - with, open, text file |
31+ | [ Ch10-2-Files-Advanced] ( notebooks/ Ch10-2-Files-Advanced.ipynb) | Chapter 13: urllib, pickle, binary files, checksums |
32+ | [ Ch11-Turtles-Events] ( notebooks/ Ch11-Turtles-Events.ipynb) | Chapter 3 & 10 |
33+ | [ Ch12-ModulesAndPackages] ( notebooks/ Ch12-Modules-Packages .ipynb) | Chapter 12: Modules - built-in and user-defined |
34+ | [ Ch13-Recursion] ( notebooks/ Ch13-Recursion.ipynb) | Chapter 18: Recursion |
35+ | [ Ch14-OOP] ( notebooks/ Ch14-OOP.ipynb) | Chapter 15, 16 Classes and Basics |
36+ | [ Ch15-Overloading-Polymorphism] ( notebooks/ Ch15-Overloading-Polymorphism.ipynb) | Chapter 21 and 22 |
37+ | [ Ch16-Exceptions] ( notebooks/ Ch16-Exceptions.ipynb) | Chapter 19 Exceptions |
38+ | [ Ch17-PyGame] ( notebooks/ Ch17-PyGame.ipynb) | Chapter 17 PyGame |
39+ | [ Ch18-Inheritance] ( notebooks/ Ch18-Inheritance.ipynb) | Chapter 23 Inheritance |
40+ | [ Ch19-Unittest] ( notebooks/ Ch19-UnitTest.ipynb) | UnitTest Framework |
41+ | [ Ch20-LinkedLists] ( notebooks/ Ch20-LinkedLists.ipynb) | Chapter 24 Linked Lists |
42+ | [ Ch21-Stacks] ( notebooks/ Ch21-Stacks.ipynb) | Chapter 25 Stacks |
43+ | [ Ch22-Queues] ( notebooks/ Ch22-Queues.ipynb) | Chapter 26 Queues |
44+ | [ Ch23-Trees] ( notebooks/ Ch23-Trees.ipynb) | Chapter 25 Trees |
45+ | [ Ch24-CodeOptimization] ( notebooks/ Ch24-CodeOptimization-ExecutionTime.ipynb) | Code Optimization |
46+ | [ Ch25-DynamicProgramming] ( notebooks/ Ch25-DynamicProgramming.ipynb) | Intro to Dynamic Programming |
47+ | [ Ch26-Sqlite] ( notebooks/ Ch26-SqliteDB.ipynb) | Sqlite Database |
4848
4949## PDF Format
5050
0 commit comments