Hi, what do you want to do?
Curated Video
The Complete Python Course - if...elif...else
This lecture demonstrates when more than two conditions or statements are present for executing code.
<
br/>
This clip is from the chapter "Python – Decision-Making Statements" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python – Decision-Making Statements" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - Function Arguments
In this lecture, we will look at function arguments and the different function arguments used in Python.
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This section...
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This section...
Curated Video
The Complete Python Course - Examples - Classes and Objects
This video demonstrates real examples of both classes and objects.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section, we will focus on an object and...
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section, we will focus on an object and...
Curated Video
The Complete Python Course - Create a String in Python
Here, you will learn how to create a string in Python.
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section focuses on strings, explaining what a string is in Python...
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section focuses on strings, explaining what a string is in Python...
Curated Video
The Complete Python Course - Course Introduction
In this video, you will learn about the course in general, the scope of the course, and what we will know upon completion of the course.
<
br/>
This clip is from the chapter "Introduction" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Introduction" of the series "The Complete Python Course...
Curated Video
The Complete Python Course - Coding Example - Variables
Here, we will look at an example of a variable on the Python IDE.
<
br/>
This clip is from the chapter "Python Variables" of the series "The Complete Python Course (2022)".In this section, we will understand variables in Python and...
<
br/>
This clip is from the chapter "Python Variables" of the series "The Complete Python Course (2022)".In this section, we will understand variables in Python and...
Curated Video
The Complete Python Course - Classes and Objects - Introduction
In this video, you will learn about objects and classes in Python and look at some examples of both.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this...
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this...
Curated Video
The Complete Python Course - 5 Coding Examples
Examples of the code are demonstrated in this video for a better understanding of the anonymous function.
<
br/>
This clip is from the chapter "Python – Lambda Functions" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python – Lambda Functions" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - 19 Coding Examples - Dictionary
This is an example-driven video to explain the concept of a dictionary in Python.
<
br/>
This clip is from the chapter "Python – Dictionary" of the series "The Complete Python Course (2022)".This section discusses the dictionary or...
<
br/>
This clip is from the chapter "Python – Dictionary" of the series "The Complete Python Course (2022)".This section discusses the dictionary or...
Curated Video
The Complete Python Course - Create a Function with Parameters
Understand what the parameters of a function are in this video.
<
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 will look at...
<
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 will look at...
Curated Video
The Complete Python Course - Continue Statement
Here, we will understand how the continue statement transfers control to a conditional expression and jumps to the next loop iteration.
<
br/>
This clip is from the chapter "Python – Break and Continue Statements" of the series "The...
<
br/>
This clip is from the chapter "Python – Break and Continue Statements" of the series "The...
Curated Video
The Complete Python Course - Concatenate Strings
Understand the concatenation of strings and learn about concatenating strings in Python.
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section focuses on strings,...
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section focuses on strings,...
Curated Video
The Complete Python Course - Break Statement
We will look at using the break statement and how it terminates execution and gets out of the loop.
<
br/>
This clip is from the chapter "Python – Break and Continue Statements" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python – Break and Continue Statements" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - Bitwise Operators
Here, you will learn about combining binary numbers using the bitwise operators.
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the different...
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the different...
Curated Video
The Complete Python Course - Assignment Operators
Learn about assignment operators that are used to assign values to variables.
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the different...
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the different...
Curated Video
The Complete Python Course - 22 Coding Examples - Lists
This is an example-driven video of lists created using Python.
<
br/>
This clip is from the chapter "Python – Lists" of the series "The Complete Python Course (2022)".This section focuses on the lists used in Python, how to create...
<
br/>
This clip is from the chapter "Python – Lists" of the series "The Complete Python Course (2022)".This section focuses on the lists used in Python, how to create...
Curated Video
The Complete Python Course - _init_() Function
An init function executes when an object gets created. Let's look at how the init function works.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section,...
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section,...
Curated Video
The Complete Python Course - While Loop
Here, we will see how the while loop executes only when the condition is true.
<
br/>
This clip is from the chapter "Python – Loops" of the series "The Complete Python Course (2022)".In this section, we will look at what a loop is...
<
br/>
This clip is from the chapter "Python – Loops" of the series "The Complete Python Course (2022)".In this section, we will look at what a loop is...
Curated Video
The Complete Python Course - What Is the Scope of Variables?
In this video, you will learn about the scope of variables, why it is important, and the different scopes available.
<
br/>
This clip is from the chapter "Scope of Variables" of the series "The Complete Python Course (2022)".In this...
<
br/>
This clip is from the chapter "Scope of Variables" of the series "The Complete Python Course (2022)".In this...
Curated Video
The Complete Python Course - What Is a Statistics Module and How to Import?
This video lecture explains the statistical module using mean, median, mode, average, standard deviation, and more.
<
br/>
This clip is from the chapter "Python – Statistics Module" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Python – Statistics Module" of the series "The Complete Python Course...
Curated Video
The Complete Python Course - What Is a class? How to Create It?
Learn to create a class and how they are the blueprints for objects in Python.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section, we will focus on...
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".In this section, we will focus on...
Curated Video
The Complete Python Course - What Are Variables in Python?
In this video, you will learn about Python's variables and how we can create a variable.
<
br/>
This clip is from the chapter "Python Variables" of the series "The Complete Python Course (2022)".In this section, we will understand...
<
br/>
This clip is from the chapter "Python Variables" of the series "The Complete Python Course (2022)".In this section, we will understand...
Curated Video
The Complete Python Course - What Are Tuples in Python?
Let's understand a collection of objects called the tuple and how they cannot be modified once created.
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python – Classes and Objects" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - What Are tokens and Their Types?
In this video, you will learn about a token in Python and what are the different types of tokens such as keywords, identifiers, and literals.
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python...
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python...