# 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