Instructional Video1:22
Curated Video

The Complete Python Course - Create and Call a Function

Higher Ed
We will work on a "Python Functions" project and learn to create a function.
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This section focuses on functions in Python. We...
Instructional Video1:54
Curated Video

The Complete Python Course - Create a Tuple in Python

Higher Ed
Create a tuple with and without parentheses.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".This section focuses on tuples, how a tuple is executed, and how a...
Instructional Video2:43
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - zip() Function

Higher Ed
You will learn to use the for loop and the built-in generator and pass any number of iterables using a zip function.
<
br/>
This clip is from the chapter "Iterators and Generators" of the series "The Ultimate Guide to Python...
Instructional Video2:03
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - zip_longest() Function

Higher Ed
Here, you will learn how to use the maximum number of elements taken into consideration using the itertools built in.
<
br/>
This clip is from the chapter "Iterators and Generators" of the series "The Ultimate Guide to Python...
Instructional Video3:10
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Writing File

Higher Ed
We will use the read mode and then, in the writing mode, we will use the “W” string to write text.
<
br/>
This clip is from the chapter "File IO" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Instructional Video6:56
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - while Statements

Higher Ed
You will learn about the while loop operation where a code executes until the condition holds true.
<
br/>
This clip is from the chapter "While Loops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
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.
<
br/>
This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with Python...
Instructional Video5:26
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - venv - Virtual Environments

Higher Ed
After learning how to install a third-party package with pip, we can then create virtual environments such as Python REPL at any directory.
<
br/>
This clip is from the chapter "Modules" of the series "The Ultimate Guide to Python...
Instructional Video5:35
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Updating JSON Data

Higher Ed
You will learn how to update the intervals and checkbuttons and update the values in the JSON file.
<
br/>
This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python...
Instructional Video3:19
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Unordered Lists - set

Higher Ed
You will learn about an unordered datatype, which is similar to a list, called the set.
<
br/>
This clip is from the chapter "Sets" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section discusses...
Instructional Video1:51
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Type of a Class

Higher Ed
In this lesson, we will be introduced to the behind-the-scenes operations when we create a class.
<
br/>
This clip is from the chapter "Metaclass" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Instructional Video3:09
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Tuple Packing

Higher Ed
You will learn how to pack the values or elements of an iterable such as the tuple.
<
br/>
This clip is from the chapter "High-Level Ops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Instructional Video6:13
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - ttk - Themed Widgets

Higher Ed
You will learn to create theme-based widgets using the tkinter themes with the ttk module.
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Instructional Video4:09
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - True or False Values

Higher Ed
In this video, you will learn about the only two Boolean values in Python, true and false.
<
br/>
This clip is from the chapter "Booleans" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...
Instructional Video3:22
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - tkinter Module

Higher Ed
You will learn to use the tkinter class to create a graphical user interface using the Python built-in GUI module.
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python...
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.
<
br/>
This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with...
Instructional Video2:35
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - The RETURN Keyword

Higher Ed
Let's look at creating a function that performs a task; we will look at functions to return a value using the RETURN keyword.
<
br/>
This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming...
Instructional Video7:07
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - The Global Object and Built-in Functions

Higher Ed
Learn about the naming conventions followed in Python for data structures and variables.
<
br/>
This clip is from the chapter "The Container - Variables" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Instructional Video1:29
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - The dict Data Type

Higher Ed
Let's learn about the dict datatype and one of the most important data structures called the dictionary.
<
br/>
This clip is from the chapter "Dictionary" of the series "The Ultimate Guide to Python Programming with Python...
Instructional Video3:38
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - The CONTINUE Keyword

Higher Ed
Let's learn about changing the control of the while loop using the CONTINUE Keyword.
<
br/>
This clip is from the chapter "While Loops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Instructional Video3:15
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - The BREAK Keyword

Higher Ed
Let's look at how to control the while loop using the BREAK keyword.
<
br/>
This clip is from the chapter "While Loops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on what a loop...
Instructional Video2:54
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Ternary Operators

Higher Ed
In this video, we will use the if condition to convert complex numbers to integers.
<
br/>
This clip is from the chapter "Decision Control" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section is...
Instructional Video9:37
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Terminal

Higher Ed
Here, we will understand the concept of working on a terminal with programming and non-programming operations of a computer.
<
br/>
This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to Python...
Instructional Video8:35
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - String Operations

Higher Ed
After learning how to create a string, now we will look at performing various operations on them.
<
br/>
This clip is from the chapter "Strings" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...