Instructional Video16:25
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Functions

Higher Ed
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...
Instructional Video6:58
Curated Video

Bilingual vs Monolingual Dictionaries | Which is better?

6th - Higher Ed
Some teachers say that it's best to use a monolingual dictionary when you are learning a language. But is that always right? In this video I look at the advantages and disadvantages of bilingual and monolingual dictionaries, and I tell...
Instructional Video8:51
Curated Video

Data Science and Machine Learning (Theory and Projects) A to Z - Pandas for Data Manipulation and Understanding: Pandas DataFrame

Higher Ed
In this video, we will cover Pandas DataFrame. This clip is from the chapter "Basics for Data Science: Data Understanding and Data Visualization with Python" of the series "Data Science and Machine Learning (Theory and Projects) A to...
Instructional Video1:40
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Using BPython for Better Scrapy Shell Experience on Linux and Windows

Higher Ed
In this video, we explore how to improve the syntax highlighting and auto-suggestions in Scrapy shell by using Bpython instead of Ipython. The tutorial takes you through step-by-step installation of Bpython within your virtual...
Instructional Video10:38
Curated Video

Selenium Python Automation Testing from Scratch and Frameworks - Tuple and Dictionary Data Types in Python

Higher Ed
This section explains tuples and dictionary data types. This clip is from the chapter "Understanding Python Data Types and Variables" of the series "Selenium Python Automation Testing from Scratch and Frameworks".This section focuses on...
Instructional Video13:13
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Dictionaries

Higher Ed
Dictionaries allow you to store data inside of a variable, but you can use an "internal name" to reference it. Now you can group similar variables together into one larger variable. Hurray, cleaner code! This clip is from the chapter...
Instructional Video0:54
Curated Video

Python 3 for Beginners: Working with Dictionaries in Python

Higher Ed
Welcome to this video on working with dictionaries in Python! You'll learn all about the key-value pairs and how to access and modify them using assignment and deletion. We'll also dive into how to check if a key exists in a dictionary,...
Instructional Video0:29
Curated Video

Python 3 for Beginners: Introduction to Python Dictionaries

Higher Ed
Welcome to today's informative session on dictionaries in programming! Whether you're a beginner or experienced coder, this video is the perfect starting point to level up your skills. We'll unlock the mysteries of dictionaries,...
Instructional Video9:27
Curated Video

pandas for Python - A Quick Guide - Introduction to Pandas Data Frame

Higher Ed
In this lesson, you will learn about the second primary data structure called Pandas Data Frame, which is a tabular data structure. We will understand the data frame and its operability. We will also learn about the Pandas dictionary....
Instructional Video17:19
Curated Video

Probability Statistics - The Foundations of Machine Learning - Simulating Coin Flips for Probability

Higher Ed
In this video, we will cover simulating coin flips for probability. This clip is from the chapter "Applications and Rules for Probability" of the series "Probability / Statistics - The Foundations of Machine Learning".In this section, we...
Instructional Video14:26
Curated Video

Practical Data Science using Python - Pandas Series 4

Higher Ed
This video explains the round method. This clip is from the chapter "Python for Data Science" of the series "Practical Data Science Using Python".This section explains Python for data science.
Instructional Video2:14
Curated Video

The Ultimate Guide to Python Programming With Python 3.10 - Pipe | Operator

Higher Ed
You will learn to use the pipe operator to join dictionaries of different variables or elements. This clip is from the chapter "High-Level Ops" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section...
Instructional Video3:27
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Using Item in Spiders

Higher Ed
In this video, we will learn about scrapy items in scrapy projects. The video tutorial demonstrates how to structure extracted data into scrapy items, specifically creating an ebook item, and how to import it into your spider module...
Instructional Video10:07
Curated Video

Python In Practice - 15 Projects to Master Python - Dice Roller

Higher Ed
This video helps to create a Dice Roller. This clip is from the chapter "Applications with Python GUI" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on applications with Python GUI.
Instructional Video10:07
Curated Video

Machine Learning Random Forest with Python from Scratch - Accuracy and Error - Random Forest Step-by-Step

Higher Ed
In this video, you will learn to implement the accuracy method to help determine our model's performance. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python from...
Instructional Video8:51
Curated Video

Data Science and Machine Learning (Theory and Projects) A to Z - Pandas for Data Manipulation: Pandas Data Frame

Higher Ed
In this video, we will cover Pandas data frame. This clip is from the chapter "Basics for Data Science: Python for Data Science and Data Analysis" of the series "Data Science and Machine Learning (Theory and Projects) A to Z".In this...
Instructional Video7:30
Curated Video

Data Science and Machine Learning (Theory and Projects) A to Z - Data Structure (List, Tuple, Set, Dictionary): Insertion and Deletion

Higher Ed
In this video, we will cover insertion and deletion. This clip is from the chapter "Basics for Data Science: Python for Data Science and Data Analysis" of the series "Data Science and Machine Learning (Theory and Projects) A to Z".In...
Instructional Video5:17
Curated Video

Intro To Python Programming - Python Dictionaries

Pre-K - Higher Ed
Dictionaries are a more complex data type that allows you to store key, value sets. You'll learn how to create and manipulate Tuples in this video.
Instructional Video7:16
Curated Video

REST APIs with Flask and Python - The ItemList and Creating Items

Higher Ed
This video explains the ItemList and demonstrates how to create items. This clip is from the chapter "Flask-RESTful for More Efficient Development" of the series "REST APIs with Flask and Python".This section explores the various aspects...
Instructional Video8:49
Curated Video

REST APIs with Flask and Python - Implementing Other Endpoints

Higher Ed
This video explains how to implement other endpoints. This clip is from the chapter "Your First REST API" of the series "REST APIs with Flask and Python".This section explains the various aspects of writing a REST API in Python.
Instructional Video4:02
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Dictionary Comprehensions

Higher Ed
If you ever need to create a dictionary out of 2 lists (happens more than you'd think!), you might want to use a dictionary comprehension instead of writing all your dictionary key-value pairs manually. This clip is from the chapter...
Instructional Video2:27
Curated Video

Python 3 for Beginners: Looping Through Dictionaries in Python

Higher Ed
In this video, you'll learn how to loop through items in a dictionary using different techniques in Python. The video explains the syntax and usage of the for loop in Python for dictionaries, as well as how to access the values of each...
Instructional Video6:26
Curated Video

Python 3 for Beginners: Working with Dictionaries

Higher Ed
This educational video explains the fundamentals of Python dictionaries, a data structure that holds key value pairs. The video goes into detail on how to create, access, modify, and delete items in a dictionary, as well as how to check...
Instructional Video3:58
Curated Video

Data Analytics using Python Visualizations - Using the ColumnDataSource Object

Higher Ed
This video explains using the ColumnDataSource object. This clip is from the chapter "Working with the Beautiful and Powerful Bokeh Library" of the series "Data Analytics Using Python Visualizations".This section explains working with...