Welcome to my comprehensive collection of Python notes!
Follow the tree structure below to navigate the topics in order.
root/
│
├── BuitinDataStructures/
│ ├── List/
│ │ ├── List.ipynb # Introduction to list
│ │ ├── ListChallenges.ipynb # Challenges using list
│ │ ├── ListComprehension.ipynb.ipynb # List comprehensions
│ │ └── NestedLists.ipynb # List inside List
│ │
│ ├── Tuple/
│ │ ├── Tuple.ipynb # tuple
│ │ └── TupleChallenges.ipynb # Challenges using Tuple
│ │
│ ├── Set/
│ │ ├── Set.ipynb # Set
│ │ ├── ListChallenges.ipynb # Challenges using list
│ │ └── SetComprehension.ipynb # Set Comprehensions
│ │
│ └── Dictionary/
│ ├── Dictionary.ipynb # Introduction to Dictionary
│ ├── DictionaryChallenges.ipynb # Challenges using Dictionary
│ └── DictionaryComprehension.ipynb.ipynb # Dictionary comprehensions
│
├── OOPS/
│ ├── oopsbasics.ipynb
│ │
│ ├── Inheritance
│ │ ├── Inheritance.ipynb
│ │ └──
│ │
│ ├── InnerClasses.ipynb
│ │
│ └── Polymorphism/
│ ├── Polymorphism.ipynb
│ ├── MethodOverloading.ipynb
│ ├── MethodoOverriding.ipynb
│ ├── OperatorOverloading.ipynb
│ ├── GeneralizationAndSpecialization.ipynb
│ ├── AbstractClassAndInterfces.ipynb
│ └── MethodResolution
│
│
└── OSModule/