-
Notifications
You must be signed in to change notification settings - Fork 0
/
_toc.yml
61 lines (59 loc) · 2.37 KB
/
_toc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Table of contents
# Learn more at https://jupyterbook.org/customize/toc.html
format: jb-book
root: intro
parts:
- caption: 1. Introduction to Python 🐍
numbered: True
chapters:
- file: prodigiouspython/Chapter_1/1_Getting_Started_With_Python_Language
- file: prodigiouspython/Chapter_1/2_Creating_Variables_and_Assigning_Values
- file: prodigiouspython/Chapter_1/3_Keywords_and_Variable_naming
- file: prodigiouspython/Chapter_1/4_Datatypes
- file: prodigiouspython/Chapter_1/5_Collection_Types
- file: prodigiouspython/Chapter_1/6_IDEs_for_Python
- file: prodigiouspython/Chapter_1/7_User_Input
- file: prodigiouspython/Chapter_1/8_Builtins
- file: prodigiouspython/Chapter_1/9_Modules
- file: prodigiouspython/Chapter_1/10_String_representations_of_objects
- file: prodigiouspython/Chapter_1/11_Installing_Packages
- file: prodigiouspython/Chapter_1/12_Help_Utility
- caption: 2. Indendation
numbered: True
chapters:
- file: prodigiouspython/Chapter_2/1_Indentation
- caption: 3. Comments and Docstrings
numbered: True
chapters:
- file: prodigiouspython/Chapter_3/1_Comments_and_docstrings
- caption: 4. Functions
numbered: True
chapters:
- file: prodigiouspython/Chapter_4/1_Functions
- file: prodigiouspython/Chapter_4/2_Positional_Arguments
- file: prodigiouspython/Chapter_4/3_Unnamed_Positional_Arguments
- file: prodigiouspython/Chapter_4/4_Keyword_only_arguments
- file: prodigiouspython/Chapter_4/5_Keyword_arguments
- file: prodigiouspython/Chapter_4/6_Default_Arguments
- file: prodigiouspython/Chapter_4/7_TLDR_about_Functions_arguments
- file: prodigiouspython/Chapter_4/8_Lambda_functions
- caption: 5. Operators
numbered: True
chapters:
- file: prodigiouspython/Chapter_5/1_Mathematical_Operators
- file: prodigiouspython/Chapter_5/2_Boolean_Operators
- file: prodigiouspython/Chapter_5/3_Comparison_Operators
- caption: 6. Conditionals
numbered: True
chapters:
- file: prodigiouspython/Chapter_6/1_Conditionals
- caption: 7. Loops
numbered: True
chapters:
- file: prodigiouspython/Chapter_7/1_Loops
- caption: 8. Classes
numbered: True
chapters:
- file: prodigiouspython/Chapter_8/1_Classes
- file: prodigiouspython/Chapter_8/2_Class_Attributes
- file: prodigiouspython/Chapter_8/3_Class_Static_Methods