17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Python 3 Deep Dive (Part 1 - Functional)
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
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.
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/06 - First-Class Functions/018 The operator Module - Coding_en.srt
46.8 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/002 02-Global-and-Local-Scopes.pdf
807.3 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/002 Global and Local Scopes - Lecture.mp4
662.3 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/002 Global and Local Scopes - Lecture_en.srt
51.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/004 04-NonLocal-Sopes.pdf
723.7 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/004 Nonlocal Scopes - Lecture.mp4
424.7 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/006 06-Closures.pdf
483.2 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/006 Closures - Lecture.mp4
431 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/006 Closures - Lecture_en.srt
60.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/007 Closures - Coding_en.srt
47.1 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/010 10-Decorators-1.pdf
428.5 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/012 Decorator Application (Timer).mp4
377.9 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/012 Decorator Application (Timer)_en.srt
51.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/014 Decorator Application (Memoization)_en.srt
43.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/015 15-Decorators-2.pdf
441.8 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/018 Decorator Application (Decorating Classes)_en.srt
69.4 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/019 Decorator Application (Dispatching) - Part 1_en.srt
45.4 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/07 - Scopes, Closures and Decorators/020 Decorator Application (Dispatching) - Part 2_en.srt
51.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/001 Introduction_en.srt
4.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/002 02-Tuples.pdf
430.4 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/002 Tuples as Data Structures - Lecture.mp4
365.8 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/004 04-Named-Tuples.pdf
575.5 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/004 Named Tuples - Lecture_en.srt
42 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/005 Named Tuples - Coding_en.srt
51.4 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/006 06-Named-Tuples-Modifying-and-Extending.pdf
486.2 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/007 Named Tuples - Modifying and Extending - Coding_en.srt
32.3 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/008 08-Named-Tuples-DocStrings-and-Default-Values.pdf
426.2 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/010 Named Tuples - Application - Returning Multiple Values_en.srt
9.2 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/011 Named Tuples - Application - Alternative to Dictionaries.mp4
432.9 MB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/08 - Tuples as Data Structures and Named Tuples/011 Named Tuples - Application - Alternative to Dictionaries_en.srt
44.7 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/001 Introduction_en.srt
4.5 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/003 How does Python Import Modules_en.srt
73.9 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/005 05-Import-Variants.pdf
462.3 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/010 09-What-are-Packages.pdf
544.4 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/012 11-Why-Packages.pdf
427.8 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/013 Structuring Packages - Part 1_en.srt
53.8 KB
[TutsNode.org] - Python 3 Deep Dive (Part 1 - Functional)/09 - Modules, Packages and Namespaces/015 14-Namespace-Packages.pdf