An open API service indexing awesome lists of open source software.

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

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