Hi, what do you want to do?
Curated Video
The Complete Python Course - Create and Call a Function
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...
<
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...
Curated Video
The Complete Python Course - Create a Tuple in Python
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...
<
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...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - zip() Function
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...
<
br/>
This clip is from the chapter "Iterators and Generators" of the series "The Ultimate Guide to Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - zip_longest() Function
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...
<
br/>
This clip is from the chapter "Iterators and Generators" of the series "The Ultimate Guide to Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Writing File
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...
<
br/>
This clip is from the chapter "File IO" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - while Statements
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...
<
br/>
This clip is from the chapter "While Loops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - What Is Threading and Multiprocessing?
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...
<
br/>
This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - venv - Virtual Environments
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...
<
br/>
This clip is from the chapter "Modules" of the series "The Ultimate Guide to Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Updating JSON Data
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...
<
br/>
This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Unordered Lists - set
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...
<
br/>
This clip is from the chapter "Sets" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section discusses...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Type of a Class
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...
<
br/>
This clip is from the chapter "Metaclass" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Tuple Packing
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...
<
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...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - ttk - Themed Widgets
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...
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - True or False Values
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...
<
br/>
This clip is from the chapter "Booleans" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - tkinter Module
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...
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Thread with Arguments
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...
<
br/>
This clip is from the chapter "Threading and Multiprocessing" of the series "The Ultimate Guide to Python Programming with...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - The RETURN Keyword
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...
<
br/>
This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - The Global Object and Built-in Functions
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...
<
br/>
This clip is from the chapter "The Container - Variables" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - The dict Data Type
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...
<
br/>
This clip is from the chapter "Dictionary" of the series "The Ultimate Guide to Python Programming with Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - The CONTINUE Keyword
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...
<
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...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - The BREAK Keyword
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...
<
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...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Ternary Operators
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...
<
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...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Terminal
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...
<
br/>
This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - String Operations
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...
<
br/>
This clip is from the chapter "Strings" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...