Python 3: Deep Dive (Part 1 Functional) (Updated 12/2022)

0dayddl

U P L O A D E R

87a7ea9d230cbda750f9e01f26d88b97.jpg

Python 3: Deep Dive (Part 1 - Functional)
Last updated 12/2022
Duration: 46h 7m | .MP4 1280x720, 30 fps(r) | AAC, 44100 Hz, 2ch | 19.3 GB
Genre: eLearning | Language: English​

Variables, Functions and Functional Programming, Closures, Decorators, Modules and Packages

What you'll learn
An in-depth look at variables, memory, namespaces and scopes
A deep dive into Python's memory management and optimizations
In-depth understanding and advanced usage of Python's numerical data types (Booleans, Integers, Floats, Decimals, Fractions, Complex Numbers)
Advanced Boolean expressions and operators
Advanced usage of callables including functions, lambdas and closures
Functional programming techniques such as map, reduce, filter, and partials
Create advanced decorators, including parametrized decorators, class decorators, and decorator classes
Advanced decorator applications such as memoization and single dispatch generic functions
Use and understand Python's complex Module and Package system
Idiomatic Python and best practices
Understand Python's compile-time and run-time and how this affects your code
Avoid common pitfalls

Requirements
Basic introductory knowledge of Python programming (variables, conditional statements, loops, functions, lists, tuples, dictionaries, classes).
You will need Python 3.6 or above, and a development environment of your choice (command line, PyCharm, Jupyter, etc.)
Description
Hello!

This is Part 1 of a series of courses intended to dive into the inner mechanics and more complicated aspects of Python 3.

This is not a beginner course!

If you've been coding Python for a week or a couple of months, you probably should keep writing Python for a bit more before tackling this series.

On the other hand, if you've been studying or programming in Python for a bit, and are now starting to ask yourself questions such as:

I wonder how this works?

is there another, more pythonic, way, of doing this?

what's a closure? is that the same as a lambda?

I know how to use a decorator someone else wrote, but how does it work? How do I write my own?

why do some boolean expressions not return a boolean value? How can I use that to my advantage?

how does the import mechanism in Python work, and why am I getting side effects?

and similar types of question.

then this course is for you.

To get the most out of this course, you should be prepared to pause the coding videos, and attempt to write code before I do! Sit back during the concept/theory videos, but lean in for the code videos!

Please make sure you review the pre-requisites for this course (below) - although I give a brief refresh of basic concepts at the beginning of the course, those are concepts you should already be very comfortable with as you being this course.

In this course series, I will give you a much more fundamental and deeper understanding of the Python language and the standard library.

Python is called a "batteries-included" language for good reason - there is a ton of functionality in base Python that remains to be explored and studied.

So this course is not about explaining my favorite 3rd party libraries - it's about Python, as a language, and the standard library.

In particular this course is based on the canonical CPython. You will also need Jupyter Notebooks to view the downloadable fully-annotated Python notebooks.

It's about helping you explore Python and answer questions you are asking yourself as you develop more and more with the language.

In Python 3: Deep Dive (Part 1) we will take a much closer look at:

Variables - in particular that they are just symbols pointing to objects in memory (references)

Namespaces and scopes

Python's numeric types

Python boolean type - there's more to a simple or statement than you might think!

Run-time vs compile-time and how that affects function defaults, decorators, importing modules, etc

Functions in general (including lambdas)

Functional programming techniques (such as map, reduce, filter, zip, etc)

Closures

Decorators

Imports, modules and packages

Tuples as data structures

Named tuples

Course Prerequisites

This is an intermediate to advanced Python course.

To have the full benefit of this course you should be comfortable with the basic Python language including:

variables and simple types such as str , bool , int and float types

for and while loops

if.else. statements

using simple lists , tuples , dictionaries and sets

defining functions (using the def statement)

writing simple classes using the class keyword and the __init__ method, writing instance methods, creating basic properties using @property decorators

importing modules from the standard library (e.g. import math)

You should also:

have Python 3.6 (or higher) installed on your system

be able to write and run Python programs using either:

the command line, or

a favorite IDE (such as PyCharm),

have Jupyter Notebooks installed (which I use throughout this course so as to provide you fully annotated Python code samples)

Who this course is for:
Anyone with a basic understanding of Python that wants to take it to the next level and get a really deep understanding of the Python language and its data structures.
Anyone preparing for an in-depth Python technical interview.

Bitte Anmelden oder Registrieren um Links zu sehen.


lURTHecp_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
NitroFlare
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
DDownload
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
 
Kommentar

87a7ea9d230cbda750f9e01f26d88b97.jpg

Python 3: Deep Dive (Part 1 - Functional)
Last updated 12/2022
Duration: 46h 7m | .MP4 1280x720, 30 fps(r) | AAC, 44100 Hz, 2ch | 19.3 GB
Genre: eLearning | Language: English​

Variables, Functions and Functional Programming, Closures, Decorators, Modules and Packages

What you'll learn
An in-depth look at variables, memory, namespaces and scopes
A deep dive into Python's memory management and optimizations
In-depth understanding and advanced usage of Python's numerical data types (Booleans, Integers, Floats, Decimals, Fractions, Complex Numbers)
Advanced Boolean expressions and operators
Advanced usage of callables including functions, lambdas and closures
Functional programming techniques such as map, reduce, filter, and partials
Create advanced decorators, including parametrized decorators, class decorators, and decorator classes
Advanced decorator applications such as memoization and single dispatch generic functions
Use and understand Python's complex Module and Package system
Idiomatic Python and best practices
Understand Python's compile-time and run-time and how this affects your code
Avoid common pitfalls

Requirements
Basic introductory knowledge of Python programming (variables, conditional statements, loops, functions, lists, tuples, dictionaries, classes).
You will need Python 3.6 or above, and a development environment of your choice (command line, PyCharm, Jupyter, etc.)
Description
Hello!

This is Part 1 of a series of courses intended to dive into the inner mechanics and more complicated aspects of Python 3.

This is not a beginner course!

If you've been coding Python for a week or a couple of months, you probably should keep writing Python for a bit more before tackling this series.

On the other hand, if you've been studying or programming in Python for a bit, and are now starting to ask yourself questions such as:

I wonder how this works?

is there another, more pythonic, way, of doing this?

what's a closure? is that the same as a lambda?

I know how to use a decorator someone else wrote, but how does it work? How do I write my own?

why do some boolean expressions not return a boolean value? How can I use that to my advantage?

how does the import mechanism in Python work, and why am I getting side effects?

and similar types of question.

then this course is for you.

To get the most out of this course, you should be prepared to pause the coding videos, and attempt to write code before I do! Sit back during the concept/theory videos, but lean in for the code videos!

Please make sure you review the pre-requisites for this course (below) - although I give a brief refresh of basic concepts at the beginning of the course, those are concepts you should already be very comfortable with as you being this course.

In this course series, I will give you a much more fundamental and deeper understanding of the Python language and the standard library.

Python is called a "batteries-included" language for good reason - there is a ton of functionality in base Python that remains to be explored and studied.

So this course is not about explaining my favorite 3rd party libraries - it's about Python, as a language, and the standard library.

In particular this course is based on the canonical CPython. You will also need Jupyter Notebooks to view the downloadable fully-annotated Python notebooks.

It's about helping you explore Python and answer questions you are asking yourself as you develop more and more with the language.

In Python 3: Deep Dive (Part 1) we will take a much closer look at:

Variables - in particular that they are just symbols pointing to objects in memory (references)

Namespaces and scopes

Python's numeric types

Python boolean type - there's more to a simple or statement than you might think!

Run-time vs compile-time and how that affects function defaults, decorators, importing modules, etc

Functions in general (including lambdas)

Functional programming techniques (such as map, reduce, filter, zip, etc)

Closures

Decorators

Imports, modules and packages

Tuples as data structures

Named tuples

Course Prerequisites

This is an intermediate to advanced Python course.

To have the full benefit of this course you should be comfortable with the basic Python language including:

variables and simple types such as str , bool , int and float types

for and while loops

if.else. statements

using simple lists , tuples , dictionaries and sets

defining functions (using the def statement)

writing simple classes using the class keyword and the __init__ method, writing instance methods, creating basic properties using @property decorators

importing modules from the standard library (e.g. import math)

You should also:

have Python 3.6 (or higher) installed on your system

be able to write and run Python programs using either:

the command line, or

a favorite IDE (such as PyCharm),

have Jupyter Notebooks installed (which I use throughout this course so as to provide you fully annotated Python code samples)

Who this course is for:
Anyone with a basic understanding of Python that wants to take it to the next level and get a really deep understanding of the Python language and its data structures.
Anyone preparing for an in-depth Python technical interview.

Bitte Anmelden oder Registrieren um Links zu sehen.


lURTHecp_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
NitroFlare
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
DDownload
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
 
Kommentar

702815577_yxusj-uw273sb4t7v7.png

- Python 3: Deep Dive (Part 1 - Functional)

WEBRip | English | MP4 + Project Files | 1280 x 720 | AVC ~460 Kbps | 30 fps
AAC | 192 Kbps | 48.0 KHz | 2 channels | ~44.5 hours | 9.71 GB Genre: Video Tutorial / Programming

Variables, Functions and Functional Programming, Closures, Decorators, Modules and Packages

What you'll learn
An in-depth look at variables, memory, namespaces and scopes
A deep dive into Python's memory management and optimizations
In-depth understanding and advanced usage of Python's numerical data types (Booleans, Integers, Floats, Decimals, Fractions, Complex Numbers)
Advanced Boolean expressions and operators
Advanced usage of callables including functions, lambdas and closures
Functional programming techniques such as map, reduce, filter, and partials
Create advanced decorators, including parametrized decorators, class decorators, and decorator classes
Advanced decorator applications such as memoization and single dispatch generic functions
Use and understand Python's complex Module and Package system
Idiomatic Python and best practices
Understand Python's compile-time and run-time and how this affects your code
Avoid common pitfalls

Hello!

This is Part 1 of a series of courses intended to dive into the inner mechanics and more complicated aspects of Python 3.

This is not a beginner course - if you've been coding Python for a week or a couple of months, you probably should keep writing Python for a bit more before tackling this series.

On the other hand, if you're now starting to ask yourself questions like:

I wonder how this works?

is there another way of doing this?

what's a closure? is that the same as a lambda?

I know how to use a decorator someone else wrote, but how does it work? Can I write my own?

why isn't this boolean expression returning a boolean value?

what does an import actually do, and why am I getting side effects?

and similar types of question.

then this course is for you.

Please make sure you review the pre-requisites for this course - although I give a brief refresh of basic concepts at the beginning of the course, those are concepts you should already be very comfortable with as you being this course.

In this course series, I will give you a much more fundamental and deeper understanding of the Python language and the standard library.

Python is called a "batteries-included" language for good reason - there is a ton of functionality in base Python that remains to be explored and studied.

So this course is not about explaining my favorite 3rd party libraries - it's about Python, as a language, and the standard library.

In particular this course is based on the canonical CPython. You will also need Jupyter Notebooks to view the downloadable fully-annotated Python notebooks.

It's about helping you explore Python and answer questions you are asking yourself as you develop more and more with the language.

In Python 3: Deep Dive (Part 1) we will take a much closer look at:

Variables - in particular that they are just symbols pointing to objects in memory

Namespaces and scope

Python's numeric types

Python boolean type - there's more to a simple or statement than you might think!

Run-time vs compile-time and how that affects function defaults, decorators, importing modules, etc

Functions in general (including lambdas)

Functional programming techniques (such as map, reduce, filter, zip, etc)

Closures

Decorators

Imports, modules and packages

Tuples as data structures

Named tuples

To get the most out of this course, you should be prepared to pause the coding videos, and attempt to write code before I do! Sit back during the concept videos, but lean in for the code videos!

And after you have seen a code video, pause the course, and try things out yourself - explore, experiment, play with code, and see how things work (or don't work! - that's also a great way to learn!)

Who this course is for:
Anyone with a basic understanding of Python that wants to take it to the next level and get a really deep understanding of the Python language and its data structures.
Anyone preparing for an in-depth Python technical interview.

also You can find my other useful:

General
Complete name : 7. Extended Unpacking - Lecture.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42 (isom/iso2/avc1/mp41/mp42)
File size : 83.4 MiB
Duration : 17 min 50 s
Overall bit rate : 653 kb/s
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-15 07:05:56
Writing application : Lavf53.32.100

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3
Format settings : CABAC / 4 Ref Frames
Format settings, CABAC : Yes
Format settings, RefFrames : 4 frames
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 17 min 50 s
Bit rate : 460 kb/s
Width : 1 280 pixels
Height : 720 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 30.000 FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(PixelFrame) : 0.017
Stream size : 58.8 MiB (71%)
Writing library : x264 core 136
Encoding settings : cabac=1 / ref=4 / deblock=1:0:0 / analyse=0x3:0x113 / me=umh / subme=7 / psy=0 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=0 / threads=48 / lookahead_threads=5 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=16 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=300 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc=2pass / mbtree=0 / bitrate=460 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / pb_ratio=1.30 / aq=1:1.00
Language : English
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : mp4a-40-2
Duration : 17 min 50 s
Bit rate mode : Constant
Bit rate : 192 kb/s
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 48.0 kHz
Frame rate : 46.875 FPS (1024 SPF)
Compression mode : Lossy
Stream size : 24.2 MiB (29%)
Default : Yes
Alternate group : 1
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Menu
00:00:00.000 : Slide 2
00:01:25.032 : Slide 3
00:02:13.230 : Slide 4 / Slide 0
00:02:17.403 : Slide 0
00:02:47.403 : Slide 5
00:02:59.919 : Slide 6
00:04:46.607 : Slide 7
00:05:19.627 : Slide 8
00:05:37.468 : Slide 9
00:06:21.494 : Slide 10
00:08:27.176 : Slide 11 / Slide 0
00:09:45.374 : Slide 0
00:10:15.374 : Slide 12
00:10:49.904 : Slide 0
00:11:19.904 : Slide 13
Screenshots

✅ Exclusive eLearning Videos ← add to bookmarks

Feel free to contact me
when links are dead or want any repost

702815609_yxusj-ffe975x03rv8.jpg

tZ5xlddB_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
UsersDrive
 
Kommentar

e6aa0aabaf89616299a17cc3658d4a3f.png

Udemy - Python 3: Deep Dive (Part 1 - Functional)

WEBRip | English | MP4 + Project Files | 1280 x 720 | AVC ~460 Kbps | 30 fps
AAC | 192 Kbps | 48.0 KHz | 2 channels | ~44.5 hours | 9.71 GB Genre: Video Tutorial / Programming

Variables, Functions and Functional Programming, Closures, Decorators, Modules and Packages

What you'll learn
An in-depth look at variables, memory, namespaces and scopes
A deep dive into Python's memory management and optimizations
In-depth understanding and advanced usage of Python's numerical data types (Booleans, Integers, Floats, Decimals, Fractions, Complex Numbers)
Advanced Boolean expressions and operators
Advanced usage of callables including functions, lambdas and closures
Functional programming techniques such as map, reduce, filter, and partials
Create advanced decorators, including parametrized decorators, class decorators, and decorator classes
Advanced decorator applications such as memoization and single dispatch generic functions
Use and understand Python's complex Module and Package system
Idiomatic Python and best practices
Understand Python's compile-time and run-time and how this affects your code
Avoid common pitfalls

Hello!

This is Part 1 of a series of courses intended to dive into the inner mechanics and more complicated aspects of Python 3.

This is not a beginner course - if you've been coding Python for a week or a couple of months, you probably should keep writing Python for a bit more before tackling this series.

On the other hand, if you're now starting to ask yourself questions like:

I wonder how this works?

is there another way of doing this?

what's a closure? is that the same as a lambda?

I know how to use a decorator someone else wrote, but how does it work? Can I write my own?

why isn't this boolean expression returning a boolean value?

what does an import actually do, and why am I getting side effects?

and similar types of question.

then this course is for you.

Please make sure you review the pre-requisites for this course - although I give a brief refresh of basic concepts at the beginning of the course, those are concepts you should already be very comfortable with as you being this course.

In this course series, I will give you a much more fundamental and deeper understanding of the Python language and the standard library.

Python is called a "batteries-included" language for good reason - there is a ton of functionality in base Python that remains to be explored and studied.

So this course is not about explaining my favorite 3rd party libraries - it's about Python, as a language, and the standard library.

In particular this course is based on the canonical CPython. You will also need Jupyter Notebooks to view the downloadable fully-annotated Python notebooks.

It's about helping you explore Python and answer questions you are asking yourself as you develop more and more with the language.

In Python 3: Deep Dive (Part 1) we will take a much closer look at:

Variables - in particular that they are just symbols pointing to objects in memory

Namespaces and scope

Python's numeric types

Python boolean type - there's more to a simple or statement than you might think!

Run-time vs compile-time and how that affects function defaults, decorators, importing modules, etc

Functions in general (including lambdas)

Functional programming techniques (such as map, reduce, filter, zip, etc)

Closures

Decorators

Imports, modules and packages

Tuples as data structures

Named tuples

To get the most out of this course, you should be prepared to pause the coding videos, and attempt to write code before I do! Sit back during the concept videos, but lean in for the code videos!

And after you have seen a code video, pause the course, and try things out yourself - explore, experiment, play with code, and see how things work (or don't work! - that's also a great way to learn!)

Who this course is for:
Anyone with a basic understanding of Python that wants to take it to the next level and get a really deep understanding of the Python language and its data structures.
Anyone preparing for an in-depth Python technical interview.

also You can find my other useful:

General
Complete name : 7. Extended Unpacking - Lecture.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42 (isom/iso2/avc1/mp41/mp42)
File size : 83.4 MiB
Duration : 17 min 50 s
Overall bit rate : 653 kb/s
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-15 07:05:56
Writing application : Lavf53.32.100

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3
Format settings : CABAC / 4 Ref Frames
Format settings, CABAC : Yes
Format settings, RefFrames : 4 frames
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 17 min 50 s
Bit rate : 460 kb/s
Width : 1 280 pixels
Height : 720 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 30.000 FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.017
Stream size : 58.8 MiB (71%)
Writing library : x264 core 136
Encoding settings : cabac=1 / ref=4 / deblock=1:0:0 / analyse=0x3:0x113 / me=umh / subme=7 / psy=0 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=0 / threads=48 / lookahead_threads=5 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=16 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=300 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc=2pass / mbtree=0 / bitrate=460 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / pb_ratio=1.30 / aq=1:1.00
Language : English
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : mp4a-40-2
Duration : 17 min 50 s
Bit rate mode : Constant
Bit rate : 192 kb/s
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 48.0 kHz
Frame rate : 46.875 FPS (1024 SPF)
Compression mode : Lossy
Stream size : 24.2 MiB (29%)
Default : Yes
Alternate group : 1
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Menu
00:00:00.000 : Slide 2
00:01:25.032 : Slide 3
00:02:13.230 : Slide 4 / Slide 0
00:02:17.403 : Slide 0
00:02:47.403 : Slide 5
00:02:59.919 : Slide 6
00:04:46.607 : Slide 7
00:05:19.627 : Slide 8
00:05:37.468 : Slide 9
00:06:21.494 : Slide 10
00:08:27.176 : Slide 11 / Slide 0
00:09:45.374 : Slide 0
00:10:15.374 : Slide 12
00:10:49.904 : Slide 0
00:11:19.904 : Slide 13
Screenshots

✅ Exclusive eLearning Videos ← add to bookmarks

Feel free to contact me
when links are dead or want any repost

zY8NF36Y_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
DDownload
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
NitroFlare
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
UsersDrive
 
Kommentar

704035485_yxusj-xk242uilu361.png

- Python 3: Deep Dive (Part 1 - Functional)

WEBRip | English | MP4 + Project Files | 1280 x 720 | AVC ~460 Kbps | 30 fps
AAC | 192 Kbps | 48.0 KHz | 2 channels | ~44.5 hours | 9.71 GB Genre: Video Tutorial / Programming

Variables, Functions and Functional Programming, Closures, Decorators, Modules and Packages

What you'll learn
An in-depth look at variables, memory, namespaces and scopes
A deep dive into Python's memory management and optimizations
In-depth understanding and advanced usage of Python's numerical data types (Booleans, Integers, Floats, Decimals, Fractions, Complex Numbers)
Advanced Boolean expressions and operators
Advanced usage of callables including functions, lambdas and closures
Functional programming techniques such as map, reduce, filter, and partials
Create advanced decorators, including parametrized decorators, class decorators, and decorator classes
Advanced decorator applications such as memoization and single dispatch generic functions
Use and understand Python's complex Module and Package system
Idiomatic Python and best practices
Understand Python's compile-time and run-time and how this affects your code
Avoid common pitfalls

Hello!

This is Part 1 of a series of courses intended to dive into the inner mechanics and more complicated aspects of Python 3.

This is not a beginner course - if you've been coding Python for a week or a couple of months, you probably should keep writing Python for a bit more before tackling this series.

On the other hand, if you're now starting to ask yourself questions like:

I wonder how this works?

is there another way of doing this?

what's a closure? is that the same as a lambda?

I know how to use a decorator someone else wrote, but how does it work? Can I write my own?

why isn't this boolean expression returning a boolean value?

what does an import actually do, and why am I getting side effects?

and similar types of question.

then this course is for you.

Please make sure you review the pre-requisites for this course - although I give a brief refresh of basic concepts at the beginning of the course, those are concepts you should already be very comfortable with as you being this course.

In this course series, I will give you a much more fundamental and deeper understanding of the Python language and the standard library.

Python is called a "batteries-included" language for good reason - there is a ton of functionality in base Python that remains to be explored and studied.

So this course is not about explaining my favorite 3rd party libraries - it's about Python, as a language, and the standard library.

In particular this course is based on the canonical CPython. You will also need Jupyter Notebooks to view the downloadable fully-annotated Python notebooks.

It's about helping you explore Python and answer questions you are asking yourself as you develop more and more with the language.

In Python 3: Deep Dive (Part 1) we will take a much closer look at:

Variables - in particular that they are just symbols pointing to objects in memory

Namespaces and scope

Python's numeric types

Python boolean type - there's more to a simple or statement than you might think!

Run-time vs compile-time and how that affects function defaults, decorators, importing modules, etc

Functions in general (including lambdas)

Functional programming techniques (such as map, reduce, filter, zip, etc)

Closures

Decorators

Imports, modules and packages

Tuples as data structures

Named tuples

To get the most out of this course, you should be prepared to pause the coding videos, and attempt to write code before I do! Sit back during the concept videos, but lean in for the code videos!

And after you have seen a code video, pause the course, and try things out yourself - explore, experiment, play with code, and see how things work (or don't work! - that's also a great way to learn!)

Who this course is for:
Anyone with a basic understanding of Python that wants to take it to the next level and get a really deep understanding of the Python language and its data structures.
Anyone preparing for an in-depth Python technical interview.

also You can find my other useful:

General
Complete name : 7. Extended Unpacking - Lecture.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42 (isom/iso2/avc1/mp41/mp42)
File size : 83.4 MiB
Duration : 17 min 50 s
Overall bit rate : 653 kb/s
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-15 07:05:56
Writing application : Lavf53.32.100

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3
Format settings : CABAC / 4 Ref Frames
Format settings, CABAC : Yes
Format settings, RefFrames : 4 frames
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 17 min 50 s
Bit rate : 460 kb/s
Width : 1 280 pixels
Height : 720 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 30.000 FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(PixelFrame) : 0.017
Stream size : 58.8 MiB (71%)
Writing library : x264 core 136
Encoding settings : cabac=1 / ref=4 / deblock=1:0:0 / analyse=0x3:0x113 / me=umh / subme=7 / psy=0 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=0 / threads=48 / lookahead_threads=5 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=16 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=300 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc=2pass / mbtree=0 / bitrate=460 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / pb_ratio=1.30 / aq=1:1.00
Language : English
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : mp4a-40-2
Duration : 17 min 50 s
Bit rate mode : Constant
Bit rate : 192 kb/s
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 48.0 kHz
Frame rate : 46.875 FPS (1024 SPF)
Compression mode : Lossy
Stream size : 24.2 MiB (29%)
Default : Yes
Alternate group : 1
Encoded date : UTC 2017-08-15 07:05:56
Tagged date : UTC 2017-08-19 19:24:25

Menu
00:00:00.000 : Slide 2
00:01:25.032 : Slide 3
00:02:13.230 : Slide 4 / Slide 0
00:02:17.403 : Slide 0
00:02:47.403 : Slide 5
00:02:59.919 : Slide 6
00:04:46.607 : Slide 7
00:05:19.627 : Slide 8
00:05:37.468 : Slide 9
00:06:21.494 : Slide 10
00:08:27.176 : Slide 11 / Slide 0
00:09:45.374 : Slide 0
00:10:15.374 : Slide 12
00:10:49.904 : Slide 0
00:11:19.904 : Slide 13
Screenshots

✅ Exclusive eLearning Videos ← add to bookmarks

Feel free to contact me
when links are dead or want any repost

704035545_yxusj-e86wo8po58f0.jpg

PSk9rPMS_o.jpg



RapidGator
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
DDownload
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
NitroFlare
Code:
Bitte Anmelden oder Registrieren um Code Inhalt zu sehen!
DDownload
UsersDrive
 
Kommentar

In der Börse ist nur das Erstellen von Download-Angeboten erlaubt! Ignorierst du das, wird dein Beitrag ohne Vorwarnung gelöscht. Ein Eintrag ist offline? Dann nutze bitte den Link  Offline melden . Möchtest du stattdessen etwas zu einem Download schreiben, dann nutze den Link  Kommentieren . Beide Links findest du immer unter jedem Eintrag/Download.

Data-Load.me | Data-Load.ing | Data-Load.to | Data-Load.in

Auf Data-Load.me findest du Links zu kostenlosen Downloads für Filme, Serien, Dokumentationen, Anime, Animation & Zeichentrick, Audio / Musik, Software und Dokumente / Ebooks / Zeitschriften. Wir sind deine Boerse für kostenlose Downloads!

Ist Data-Load legal?

Data-Load ist nicht illegal. Es werden keine zum Download angebotene Inhalte auf den Servern von Data-Load gespeichert.
Oben Unten