Hi, what do you want to do?
Curated Video
The Complete Python Course - What Are Python Modules?
This video lecture outlines a module in Python and how they help organize code in Python.
<
br/>
This clip is from the chapter "Python – Modules" of the series "The Complete Python Course (2022)".In this section, we will look at...
<
br/>
This clip is from the chapter "Python – Modules" of the series "The Complete Python Course (2022)".In this section, we will look at...
Curated Video
The Complete Python Course - What Are Operators?
You will learn about Python's different operators such as arithmetic, assignment, logical, identity, membership, and bitwise.
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course...
Curated Video
The Complete Python Course - What Are Loops?
Let's understand what a loop is in Python and the different types of loops.
<
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 in...
<
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 in...
Curated Video
The Complete Python Course - What Are Lists in Python?
Let's understand lists in Python and how to create a list.
<
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 - What Are Lambda Functions?
Learn about the Lambda function, which is also an anonymous function or a function without a name.
<
br/>
This clip is from the chapter "Python – Lambda Functions" of the series "The Complete Python Course (2022)".This section...
<
br/>
This clip is from the chapter "Python – Lambda Functions" of the series "The Complete Python Course (2022)".This section...
Curated Video
The Complete Python Course - What Are Functions?
You will learn about functions and function arguments in Python, required keywords, arbitrary, default, and others.
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - What Are Dictionaries in Python?
Let's look at a dictionary in Python and create our dictionary that represents key-value pairs in Python.
<
br/>
This clip is from the chapter "Python – Dictionary" of the series "The Complete Python Course (2022)".This section...
<
br/>
This clip is from the chapter "Python – Dictionary" of the series "The Complete Python Course (2022)".This section...
Curated Video
The Complete Python Course - What Are Comments?
In this video, we will look at the various comments we can use in Python.
<
br/>
This clip is from the chapter "Python - Comments" of the series "The Complete Python Course (2022)".This section discusses the various kinds of...
<
br/>
This clip is from the chapter "Python - Comments" of the series "The Complete Python Course (2022)".This section discusses the various kinds of...
Curated Video
The Complete Python Course - String Literals
We will further understand what a literal is and how they are executed with single, double, and triple quotes.
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section...
<
br/>
This clip is from the chapter "Python – Strings" of the series "The Complete Python Course (2022)".This section...
Curated Video
The Complete Python Course - Slicing to Access Substrings
Learn about slicing and how to access substrings using slicing.
<
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...
<
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...
Curated Video
The Complete Python Course - Single-Line and Multi-Line Comments
Here, you will learn to create comments using the # and ''' to develop single and multiline comments.
<
br/>
This clip is from the chapter "Python - Comments" of the series "The Complete Python Course (2022)".This section discusses...
<
br/>
This clip is from the chapter "Python - Comments" of the series "The Complete Python Course (2022)".This section discusses...
Curated Video
The Complete Python Course - Sets - 15 Coding Example
This video is a detailed explanations of sets using multiple coding examples.
<
br/>
This clip is from the chapter "Python – Sets" of the series "The Complete Python Course (2022)".This section illustrates the concepts of sets,...
<
br/>
This clip is from the chapter "Python – Sets" of the series "The Complete Python Course (2022)".This section illustrates the concepts of sets,...
Curated Video
The Complete Python Course - Set Up Python Interpreter in PyCharm
We will configure Python Interpreter in PyCharm.
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install Python's current version on our...
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install Python's current version on our...
Curated Video
The Complete Python Course - Run the First Python Project
The final step of this section is to run your first Python program on PyCharm IDE.
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install...
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install...
Curated Video
The Complete Python Course - Recursion
Learn about the recursion process, where a function calls itself for an execution.
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This section focuses on functions in...
<
br/>
This clip is from the chapter "Python – Functions" of the series "The Complete Python Course (2022)".This section focuses on functions in...
Curated Video
The Complete Python Course - Python Introduction and Features
Here, we will look at Python's various features and capabilities and how to use the program in coding.
<
br/>
This clip is from the chapter "Introduction" of the series "The Complete Python Course (2022)".This section outlines the...
<
br/>
This clip is from the chapter "Introduction" of the series "The Complete Python Course (2022)".This section outlines the...
Curated Video
The Complete Python Course - Negative Indexing to Access Substrings
We will look at accessing negative indexing with various examples.
<
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...
<
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...
Curated Video
The Complete Python Course - Multi-Dimensional Python List
Lists within lists are called multidimensional lists in Python. This video demonstrates the concept and shows how to create them.
<
br/>
This clip is from the chapter "Python – Lists" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Python – Lists" of the series "The Complete Python Course...
Curated Video
The Complete Python Course - Membership Operators
This lecture discusses how membership operators check membership in a data structure.
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the...
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course (2022)".This section delves deep into the...
Curated Video
The Complete Python Course - Logical Operators
Here, we will look at the AND, OR, and NOT conditional statements and how logical operators combine them to return results.
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Python - Operators" of the series "The Complete Python Course...
Curated Video
The Complete Python Course - Literals
Learn what Python literals are and their types with examples: string literals, numeric literals, and Boolean literals.
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - Keywords
Here, we will look at what keywords are in Python, how they differ from variables, and why we can't name them as variables.
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python Course (2022)".This...
<
br/>
This clip is from the chapter "Python Tokens" of the series "The Complete Python Course (2022)".This...
Curated Video
The Complete Python Course - Install Python on Windows
Here, you will learn to install Python's latest version available for Windows.
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install Python's...
<
br/>
This clip is from the chapter "Set Up Python" of the series "The Complete Python Course (2022)".This section demonstrates how to install Python's...
Curated Video
The Complete Python Course - if...else Statement
You will learn about the if and the else statements and how they execute if one statement is true or false.
<
br/>
This clip is from the chapter "Python – Decision-Making Statements" of the series "The Complete Python Course...
<
br/>
This clip is from the chapter "Python – Decision-Making Statements" of the series "The Complete Python Course...