Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Get User Input
This video demonstrates how to get user input in a specific program. This clip is from the chapter "Python Basics- Level 1" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section is about the...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Variables - Data Types
This video explores the data types in Python. This clip is from the chapter "Python Basics- Level 1" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section is about the fundamentals of Python. In this...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Install Python on Linux
In this video, the author demonstrates the installation of Python in Linux OS. This clip is from the chapter "Introduction" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Install Python on Windows
This video demonstrates how to install Python in Windows OS. This clip is from the chapter "Introduction" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a brief introduction...
Curated Video
C++ Developer - Section Overview - Introduction to Classes and Objects
This video introduces you to classes and objects. This clip is from the chapter "Introduction to Classes and Objects" of the series "The Complete C++ Developer Course".This section introduces classes and objects.
Curated Video
C++ for Beginners - Bitwise Operators
This lesson examines Bitwise operators, or, ways to manipulate binary numbers. This clip is from the chapter "Binary Operations" of the series "C++ for Beginners".Binary Theory
Curated Video
Creational Design Patterns in Modern C++ - Logger Class - Part I
This video is the first part of the two-part video that highlights the issues in a class and explains why it needs to be a singleton. • Structure of the match function • Learn implementation of match function • Usage example and...
Curated Video
Creational Design Patterns in Modern C++ - Registry of Singletons - II
This video is the second part of the two-part video that demonstrates how to implement the registry using a lazy instantiation. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Functions
Sometimes you need to check whether something is a match against multiple answers. Chaining comparison operators in Python lets you check against multiple answers. This clip is from the chapter "Intermediate Python" of the series "Python...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - For Loops
This is a special type of loop that will cycle over all your items in an iterable (like a list or tuple). This clip is from the chapter "Intermediate Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Variables
Variables let you store "answers" in shortcuts with names. That's basically the entire lesson in one sentence. This clip is from the chapter "Beginner-friendly Python" of the series "Python for Everybody: The Ultimate Python 3...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Unit Tests
Unit tests let you test your code. You should actually try to break your own code! Unit tests ensure your code consistently produces expected answers. This clip is from the chapter "Advanced Python" of the series "Python for Everybody:...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Summary
You're done? Here's where to go next. This clip is from the chapter "Summary" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".Let's wrap up the course
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Finding 3rd Party Packages
Learn how to find 3rd party packages in Python. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps understand about OOP, classes, class interface, and...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Errors and Exceptions
Errors happen. You can NOT avoid them. It's a fact of life, your programs will have errors somewhere. But that doesn't mean your code should crash your program. Learn how to handle errors gracefully. This clip is from the chapter...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Catching Exceptions
When you get an error, you need to "handle" it so your code doesn't crash. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps understand about OOP,...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Booleans
Booleans are true or false. It‘s like 1 or 0. On or off. Yes or no. Actually, you don't even need to watch this video, this description summed it up! This clip is from the chapter "Beginner-friendly Python" of the series "Python for...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Filter
Ever need to filter through items in a list? The filter function lets you filter data very easily. A good example is skipping through the Uber Eats menu and going straight to McDonald's. You filtered everything else out. This clip is...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Decorators
Python has this cool feature that lets you add extra functionality to an existing function. It's like a toggle for function features! This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Creating a Package
Learn how to create your own local package for your Python programs! This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps understand about OOP, classes,...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Asking Great Questions
For many, the reason you want to take a course is to have access to a dedicated teacher. But sometimes the teachers need help with well-formatted code. Learn how to ask awesome questions to get awesome answers! This clip is from the...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Create a Python Class
This video demonstrates how to create a class in Python. This clip is from the chapter "Extra: Python OOP" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a concise...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Use Loops to Iterate on Python Lists
This video demonstrates how to use loops to iterate on Python lists. This clip is from the chapter "Python Basics- Level 3" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Combine Different Conditional Statements
In this video, the author demonstrates how to combine different conditional statements. This clip is from the chapter "Python Basics- Level 3" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section,...