Instructional Video6:53
Curated Video

Python In Practice - 15 Projects to Master Python - Positional and Keyword Arguments

Higher Ed
This video explains positional arguments, keyword arguments, and arguments and parameters. This clip is from the chapter "Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on functions.
Instructional Video3:08
Curated Video

Python In Practice - 15 Projects to Master Python - locals( )

Higher Ed
This video explains the locals( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video2:52
Curated Video

Python In Practice - 15 Projects to Master Python - hasattr( )

Higher Ed
This video explains the hasattr( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video3:41
Curated Video

Python In Practice - 15 Projects to Master Python - Getting Arguments during Function Call

Higher Ed
This video explains using arguments in functions and how to pass arguments to functions we created. This clip is from the chapter "Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on...
Instructional Video3:02
Curated Video

Python In Practice - 15 Projects to Master Python - delattr( )

Higher Ed
This video explains the delattr( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video2:37
Curated Video

Python In Practice - 15 Projects to Master Python - Arbitrary Arguments (*args)

Higher Ed
This video explains arbitrary arguments, or *args, and how to get a list as an argument. This clip is from the chapter "Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on functions.
Instructional Video4:07
Curated Video

Python In Practice - 15 Projects to Master Python - all( )

Higher Ed
This video explains the all( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video9:44
Curated Video

Python In Practice - 15 Projects to Master Python - Admin Application and Creating Our Own Applications

Higher Ed
This video explains the Admin application and creating our own applications. This clip is from the chapter "eBook Web Store" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on the eBook web store.
Instructional Video2:43
Curated Video

Python In Practice - 15 Projects to Master Python - abs( )

Higher Ed
This video explains the abs( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video5:05
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Notification (For Windows)

Higher Ed
You will learn how to define the actual code to send notifications from our project. This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Instructional Video21:22
Curated Video

Minimal API Development with ASP.NET Core - Add HTTP Request Filters (.NET 7)

Higher Ed
This video explains filters and how to add HTTP request filters. This clip is from the chapter "Value-Added Features" of the series "Minimal API Development with ASP.NET Core".This section explains value-added features.
Instructional Video2:31
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - What Is Threading and Multiprocessing?

Higher Ed
You will learn to join multiple lines of code using the threading and multiprocessing methods. This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Instructional Video3:29
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Thread with Arguments

Higher Ed
You will learn to call arguments using threads so we do not have to wait for the code to execute. This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with Python...
Instructional Video3:24
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Slicing with Steps

Higher Ed
You will learn to slice or remove elements from an array using the slice method. This clip is from the chapter "Arrays" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on creating an array,...
Instructional Video3:17
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Sentinels

Higher Ed
We will look at creating data classes that do not hold any value. This clip is from the chapter "Object-Oriented Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on...
Instructional Video5:51
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Recursive Functions

Higher Ed
When a function calls itself, we call it recursive, where a function can call itself in a block of code. This clip is from the chapter "Functional Programming" of the series "The Ultimate Guide to Python Programming with Python...
Instructional Video3:47
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Notification (For Mac)

Higher Ed
You will learn to send notifications from macOS. This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on creating a graphical user...
Instructional Video3:40
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - namedtuple Class

Higher Ed
Here, we will look at creating a dictionary to store the information of an object and create a copy of this and change values. This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python Programming...
Instructional Video4:24
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - log(padding) Argument

Higher Ed
We will look at the END argument in our function and execute code. This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section illustrates a lot of built-in functions...
Instructional Video3:42
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Lambda Functions

Higher Ed
You will learn about lambda functions or one-liner functions to minimize the amount of code writing. This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...
Instructional Video5:59
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - getattr() Use Case

Higher Ed
We will look at the importance of using the getattr() case. This clip is from the chapter "Object-Oriented Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on object-oriented...
Instructional Video2:01
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - getattr() and setattr()

Higher Ed
We will run functions using the get attribute and the set attribute. This clip is from the chapter "Object-Oriented Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on...
Instructional Video2:30
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - functools.partial()

Higher Ed
You will learn to use the built-in functools module, which has some utility functions that can be used with normal functions. This clip is from the chapter "Functional Programming" of the series "The Ultimate Guide to Python Programming...
Instructional Video7:53
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Function Attributes

Higher Ed
In this video, we will use the def key and pass an argument to define our function. This clip is from the chapter "Functional Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on...