https://github.com/aminkhani/deep-dive-python
Python Deep Dive Course, Created by: Dr. Fred Baptiste - Combined the Pdfs and jupyter notebook with together
https://github.com/aminkhani/deep-dive-python
advanced-python complete-python deep-dive-python programming python
Last synced: 9 months ago
JSON representation
Python Deep Dive Course, Created by: Dr. Fred Baptiste - Combined the Pdfs and jupyter notebook with together
- Host: GitHub
- URL: https://github.com/aminkhani/deep-dive-python
- Owner: aminkhani
- License: gpl-3.0
- Created: 2023-09-16T09:24:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-03T15:26:39.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T07:18:38.167Z (11 months ago)
- Topics: advanced-python, complete-python, deep-dive-python, programming, python
- Language: Jupyter Notebook
- Homepage:
- Size: 4.62 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deep Dive Python
[Python Deep Dive Course](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjWt9e9666BAxXDhv0HHYTkAYsQFnoECAgQAQ&url=https%3A%2F%2Fwww.udemy.com%2Fcourse%2Fpython-3-deep-dive-part-1%2F&usg=AOvVaw1JghAkEwEvrvvvK-WfjF_t&opi=89978449), Created by: [Dr.Fred Baptiste](https://github.com/fbaptiste)
Combined the PDFs and Jupyter Notebook with together.
> [!NOTE]
>
> ✅ Completed | ⭕ In Future |📍 Inprogress
## Content
### [Part 1- Functional](./Part1-Functional/)
- #### ⭕ 01 - Introduction
- #### ⭕ 02 - A Quick Refresher - Basics Review
- #### ⭕ 03 - Variables and Memory
- #### ⭕ 04 - Numeric Types
- #### ✅ [05 - Function Parameters](./Part1-Functional/05-FunctionParameters/)
- ✅ [01-Introduction.ipynb](./Part1-Functional/05-FunctionParameters/01-Introduction.ipynb)
- ✅ [02-ArgumentVsParameters.ipynb](Part1-Functional/05-FunctionParameters/02-ArgumentVsParameters.ipynb)
- ✅ [03-Positional&KeywordArguments.ipynb](Part1-Functional/05-FunctionParameters/03-Positional&KeywordArguments.ipynb)
- ✅ [04-UnpackingIterables.ipynb](Part1-Functional/05-FunctionParameters/04-UnpackingIterables.ipynb)
- ✅ [05-ExtendedUnpacking.ipynb](Part1-Functional/05-FunctionParameters/05-ExtendedUnpacking.ipynb)
- ✅ [06-args&kwargs.ipynb](Part1-Functional/05-FunctionParameters/06-args&kwargs.ipynb)
- ✅ [07-DefaultValue.ipynb](Part1-Functional/05-FunctionParameters/07-DefaultValue.ipynb)
- #### 📍 [06 - First-Class Functions](Part1-Functional/06-FirstClassFunctions)
- 📍 [FirstClassFunction.ipynb](Part1-Functional/06-FirstClassFunctions/FirstClassFunction.ipynb)
### ⭕ Part 2 - Iteration, Generators
### ⭕ Part 3 - Hash Maps, JSON Serialization
### ⭕ Part 4 - OOP