ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

873 results

Simon Guest
Introduction to Python Lists and Tuples

A brief introduction to Lists and Tuples in Python, especially how they are used in various AI/ML frameworks. 00:00 Introduction ...

18:46
Introduction to Python Lists and Tuples

19 views

3mo ago

J David Eisenberg
Chapter 10: Lists (part 1)

Creating lists, working with list slices. Note: I often refer to “list items“---the correct technical term is “list elements.” I didn't plug in ...

9:36
Chapter 10: Lists (part 1)

209 views

7y ago

Craig Piercy
Python built-in function video: list()

What is `list()`? It's a built-in Python function that creates a new list or converts an iterable into a list. Here's the syntax: ...

4:20
Python built-in function video: list()

36 views

1y ago

Christian Drumm
Python for Beginners - Week 2 Unit 3 - Important functions and methods for lists

And once again, herefore Python offers functions and methods that support this handling of lists. Showtime again. Let's dive into ...

13:41
Python for Beginners - Week 2 Unit 3 - Important functions and methods for lists

111 views

2y ago

Spoken-Tutorial IIT Bombay
Getting started with lists - English

Getting started with lists empty filled lists heterogenity accessing len append elements del (+ remove)

11:19
Getting started with lists - English

2,188 views

11y ago

SI Tech
Python Lists Tutorial | Mastering Python Lists in 5 Minutes! | Learn python | SI Tech

In just 5 minutes, you'll learn everything you need to know about Python lists. This video covers: * Basic list creation and ...

5:15
Python Lists Tutorial | Mastering Python Lists in 5 Minutes! | Learn python | SI Tech

45 views

1y ago

Code Script
Day 05 : Python Lists & List Operations Explained - Full Guide for Beginners

Master Python Lists & List Operations in just 8 minutes! In this video, we'll explore everything from creating lists , accessing ...

8:26
Day 05 : Python Lists & List Operations Explained - Full Guide for Beginners

62 views

1y ago

J David Eisenberg
Chapter 10: Lists (part 2)

Useful list methods (append, pop, insert) and a sample program using lists.

8:39
Chapter 10: Lists (part 2)

173 views

7y ago

J David Eisenberg
Chapter 9: List Basics

How to define and access a list (a collection of data items)

4:57
Chapter 9: List Basics

107 views

3y ago

henryishuman
How To: Beginner Python - Part 5 - Lists

In this episode we discuss a new data type - the list - as well as some functions that can be used with them. Key concepts and ...

4:40
How To: Beginner Python - Part 5 - Lists

832 views

8y ago

Christian Drumm
Python for Beginners - Week 2 Unit 1 - What are lists in Python?

And you would like to do it with the Python program. Using the input function you already know from the last week, you could, ...

9:22
Python for Beginners - Week 2 Unit 1 - What are lists in Python?

204 views

2y ago

learnwithshahriar
Python zip() Function Tutorial | Combine Iterables in Python

Learn How to Use Python's zip() Function for Combining Iterables! In this tutorial, we'll cover the powerful zip() function in Python, ...

5:00
Python zip() Function Tutorial | Combine Iterables in Python

0 views

4y ago

DevForDev
Collections in Python | List | Dictionary | Set | Tuple | Python 3.13

Subscribe to Support!! Download free PDF: https://drive.google.com/file/d/15exdsxE1WHAEt--ao4v6O3DJxT2BQK1t/view ...

15:06
Collections in Python | List | Dictionary | Set | Tuple | Python 3.13

123 views

1y ago

J David Eisenberg
Chapter 10: Nested Lists

Working with lists inside lists.

6:50
Chapter 10: Nested Lists

1,041 views

7y ago

Craig Piercy
Python built-in function: sum()

In this video, we will discuss the function: sum() Hi Python learners! In today's video, we're diving into the `sum()` function— a ...

4:50
Python built-in function: sum()

140 views

1y ago

Craig Piercy
Python built-in function: id()

It's a built-in Python function that returns the unique identifier of an object. Here's the syntax: id(object) `object`: The object whose ...

4:25
Python built-in function: id()

139 views

1y ago

Christian Drumm
Python for Beginners - Week 4 Unit 3 - Reading data from files

... and then continue working on the list. Do not continue to work in the file later on. Actually, there are other methods to read this ...

8:46
Python for Beginners - Week 4 Unit 3 - Reading data from files

99 views

2y ago

Dan Kornas
Python Programming Fundamentals | Python Tuples

Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...

7:07
Python Programming Fundamentals | Python Tuples

877 views

1y ago

learnwithshahriar
Python Slicing Tutorial | Master List, String, and Tuple Slicing in Python

Learn How to Use Slicing in Python to Work with Sequences Efficiently! In this tutorial, we'll dive into Python's slicing capabilities, ...

7:29
Python Slicing Tutorial | Master List, String, and Tuple Slicing in Python

4 views

4y ago

Christian Drumm
Python for Beginners - Week 2 Unit 8 - List comprehension

What is a list comprehension? According to the Python documentation, a list comprehension is a way to process all or part of the ...

13:52
Python for Beginners - Week 2 Unit 8 - List comprehension

149 views

2y ago

J David Eisenberg
Chapter 7: Function Prototypes

Using function prototypes allows you to call functions before you have defined their function body.

5:01
Chapter 7: Function Prototypes

188 views

5y ago

J David Eisenberg
Chapter 13: ArrayList (part 2)

Converting Arrays to ArrayLists, and the remove(), contains(),indexOf(), and lastIndexOf() methods.

6:57
Chapter 13: ArrayList (part 2)

94 views

4y ago

Shanmuga R
Python for Beginners - Learn Python Now Without IDE - 3

Python Beginner Tutorial encourages you to learn by doing. Follow along this Python course to get started. This is Part 3 of he ...

14:11
Python for Beginners - Learn Python Now Without IDE - 3

114 views

3y ago

Shanmuga R
Python for Beginners | 9 | For Loops Using Lists

In this chapter of python course, we introduce you to Loops. There are 2 types of loops in python. 1) The For Loop and 2) The ...

8:44
Python for Beginners | 9 | For Loops Using Lists

61 views

3y ago

COMPUTER & EXCEL SOLUTION
pop and push functions in python || List function in python || Pythonfunction@COMPUTEREXCELSOLUTION

Join this channel to get access to perks: https://www.youtube.com/channel/UC4C_tfy6WLDxzVVO3y6YinA/join This is my ...

5:11
pop and push functions in python || List function in python || Pythonfunction@COMPUTEREXCELSOLUTION

50 views

1y ago

Craig Piercy
Python data types: collections.userlist

Python's built-in list methods are implemented in C, and they can bypass your custom logic. `UserList` is written in pure Python, ...

4:52
Python data types: collections.userlist

37 views

1y ago

NFDI4Earth
Introduction to For-Loops in Python: Iteration and List Processing

This video explains how to use for-loops in Python to iterate over strings and lists. It covers basic loop syntax, variable assignment ...

4:29
Introduction to For-Loops in Python: Iteration and List Processing

41 views

1y ago

Machine Learning Practice
List Comprehension in Python

List Comprehension is a compact way of iterating over the elements of a list and creating a corresponding output list.

4:47
List Comprehension in Python

71 views

4y ago

lattyware
Tutorial: List Comprehensions in Python

List comprehensions are a really powerful tool that every Python programmer should know, they often reduce many lines of ...

5:41
Tutorial: List Comprehensions in Python

16,613 views

13y ago

Christian Drumm
Python for Beginners - Week 2 Unit 4 - Iterating using the for loop

We could, for example, try to find the smallest or the biggest element in a list. In reality, Python has a function called min, which ...

15:49
Python for Beginners - Week 2 Unit 4 - Iterating using the for loop

218 views

2y ago

Christian Drumm
Python for Beginners - Week 2 Unit 6 - Sequences

And this built-in function len returns the lengths of a sequence. This function can be used to get the length of a string, of a list, or of ...

10:05
Python for Beginners - Week 2 Unit 6 - Sequences

81 views

2y ago

Spoken-Tutorial IIT Bombay
Getting started with lists

lists के साथ शुरूआत empty filled lists heterogenity accessing len append elements del (+ ...

11:19
Getting started with lists

424 views

11y ago

Christian Drumm
Python for Beginners - Week 3 Unit 5 - Important funtions and methods for complex data types

For all the elements, we can use length function, which returns length. So the length of a list, the lengths of a tuple, or the length of ...

13:47
Python for Beginners - Week 3 Unit 5 - Important funtions and methods for complex data types

98 views

2y ago

Craig Piercy
Python built-in function: hash()

It's a built-in Python function that returns the hash value of an object. The hash value is an integer that uniquely identifies the ...

4:46
Python built-in function: hash()

191 views

1y ago

R Consortium
Efficient list recursion in R with rrapply

This video is part of the virtual useR! 2021 conference. Find supplementary material on our website https://user2021.r-project.org/.

4:33
Efficient list recursion in R with rrapply

496 views

5y ago

Machine Learning Practice
For Loops with Zip

Zip adds functionality that allows us to pair up elements from two or more lists (combined elements are "tuples"). We can then ...

6:26
For Loops with Zip

223 views

4y ago

Code with Ebrima
Data Types in Python for Beginners 2025: Primitives & Using the type() Function

Description Welcome to this Python tutorial where we explore the core data types in Python! In this video, you'll discover: • What ...

4:40
Data Types in Python for Beginners 2025: Primitives & Using the type() Function

298 views

1y ago

NFDI4Earth
Combining Functions, Loops, and Conditions

This video demonstrates how to integrate functions, loops, and conditional statements in Python to build a simple conversion ...

4:57
Combining Functions, Loops, and Conditions

30 views

1y ago

Joseph H.Schuessler
Python Fundamentals for Business: Variables, Loops & Functions Explained | Ep. 26

A computer is fast but entirely literal — it does nothing without precise, coded instructions. This video breaks down the ...

5:11
Python Fundamentals for Business: Variables, Loops & Functions Explained | Ep. 26

18 views

1mo ago

henryishuman
How To: Beginner Python - Part 3 - Strings and their functions

In this episode, we discuss strings, and some of the functions we can use to manipulate them. Key concepts and keywords in this ...

5:18
How To: Beginner Python - Part 3 - Strings and their functions

1,075 views

8y ago

Craig Piercy
Python built-in function: sorted()

It's a Python built-in function that returns a new sorted list from the elements of an iterable. Here's the syntax: sorted(iterable, ...

5:04
Python built-in function: sorted()

24 views

1y ago

Craig Piercy
Python built-in function: isinstance()

It's a built-in Python function that checks if an object is an instance of a class or a subclass thereof. Here's the syntax: ...

4:56
Python built-in function: isinstance()

122 views

1y ago

Craig Piercy
Python built-in function: float()

In this video, we will discuss the function: float() Hello Python learners! In today's video, we're exploring the `float()` function —a ...

5:12
Python built-in function: float()

67 views

1y ago

Christian Drumm
Python for Beginners - Week 2 Unit 5 - Using ranges to create sequences of numbers

But we would like to hand in our parameters through the input function. So what we can do is, I say start = input("What is the ...

16:21
Python for Beginners - Week 2 Unit 5 - Using ranges to create sequences of numbers

107 views

2y ago

Tyler Caraza-Harter
CS 320 Sep 25 (Part 2) - Nested Lists

... has um function all right so let me kind of clear that out so this list we're dealing with um if you were to put in python twitter would ...

18:44
CS 320 Sep 25 (Part 2) - Nested Lists

185 views

6y ago

Christian Drumm
Python for Beginners - Week 2 Unit 7 - Slicing

So far, you have always accessed either a complete list or individual elements of a list by using an index within this list. Now, what ...

10:24
Python for Beginners - Week 2 Unit 7 - Slicing

77 views

2y ago

Solve Computer Science
Real-world Python code optimizations

In this video I explain the optimizations for the upcoming version of md-toc (8.2.1). You'll see an in-depth analysis about some ...

15:07
Real-world Python code optimizations

31 views

2y ago

Dan Kornas
Python Programming Fundamentals | Python Dictionaries

Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...

10:48
Python Programming Fundamentals | Python Dictionaries

895 views

1y ago

J David Eisenberg
Chapter 12: Dictionaries

This video describes how to use a dictionary --- a set of key-and-value pairs. Other programming languages have similar ...

11:56
Chapter 12: Dictionaries

259 views

7y ago

Applied Language Technology
Getting started with Python: variables and objects

In this video, we will learn about two fundamental concepts in Python: variables and objects. ✨ Check out the learning materials ...

10:58
Getting started with Python: variables and objects

1,529 views

5y ago

henryishuman
How To: Beginner Python - Part 2 - Types and Operators

In this episode, we discuss data type, and how variables of differing types interact with one another. Key concepts and keywords ...

4:58
How To: Beginner Python - Part 2 - Types and Operators

2,742 views

8y ago

Christian Drumm
Python for Beginners - Week 3 Unit 1 - What are tuples?

You can see this parenthesis, and then we convert it back using the list function into a list. You can see these square brackets, ...

13:21
Python for Beginners - Week 3 Unit 1 - What are tuples?

224 views

2y ago

Christian Drumm
Python for Beginners - Week 5 Unit 7 - Destructuring assignment

Actually, it's possible to return multiple values from a function using a list or a tuple. And using a destructuring assignment, we can ...

14:19
Python for Beginners - Week 5 Unit 7 - Destructuring assignment

66 views

2y ago

Spoken-Tutorial IIT Bombay
Getting started with tuples - English

Getting started with tuples immutability tuple packing, unpacking a, b = b, a accessing individual elements slicing, striding.

7:18
Getting started with tuples - English

1,066 views

11y ago

Meri (Engel) Kasprak - programming videos
Using Dictionaries in Python

Using Dictionaries in Python - working with blood sugar in key value pairs code here: ...

5:57
Using Dictionaries in Python

443 views

9y ago

Dan Kornas
Python Programming Fundamentals | Python Handling Files

Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...

8:30
Python Programming Fundamentals | Python Handling Files

651 views

1y ago

J David Eisenberg
Chapter 8: The while loop in Python

This is a loop to use when you don't know in advance how many iterations you need.

9:58
Chapter 8: The while loop in Python

269 views

7y ago

Craig Piercy
Python data types: list

You can add, remove, sort, and slice lists easily. 4. Python includes tons of built-in list methods, like `.append()`, `.pop()`, ...

5:16
Python data types: list

171 views

1y ago

Jill Jones
Python Chapter 7 Intro to Sets

Video lecture by Jill Jones Center for Computer Studies Magnet Program Carl Hayden High School.

12:33
Python Chapter 7 Intro to Sets

470 views

10y ago

Dan Kornas
Python Programming Fundamentals | Python Sets

Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...

7:41
Python Programming Fundamentals | Python Sets

729 views

1y ago

Solve Computer Science
Smart way to create matrix in Python

This video shows you how to create square matrices in Python using normal lists and NumPy. Using NumPy has the advantage to ...

5:52
Smart way to create matrix in Python

218 views

3y ago

Craig Piercy
Python data types: set

... list. Note in this example, duplicates for '2' and '4' have been removed. You can also perform the usual set functions on Python ...

4:54
Python data types: set

62 views

1y ago

DigiLing
DigiLing - Introduction to Python for Linguists - Unit 7.2

Using the function LEN on our list. So print LEN called "on list". We have 5 elements of the list. Great. Now, let's try updating the ...

7:07
DigiLing - Introduction to Python for Linguists - Unit 7.2

247 views

8y ago

J David Eisenberg
Chapter 11: The ArrayList class

ArrayLists let you store an arbitrary number of items, unlike Arrays, which have a fixed length. Here are some of the most-used ...

8:00
Chapter 11: The ArrayList class

253 views

6y ago

Code with Ebrima
Type Casting in Python programming Explained

Description Welcome to this Python Type Casting tutorial! In this video, you'll learn how to convert between different data types in ...

7:43
Type Casting in Python programming Explained

581 views

1y ago

J David Eisenberg
Chapter 13: The ArrayList class

ArrayLists let you store an arbitrary number of items, unlike Arrays, which have a fixed length. Here are some of the most-used ...

8:00
Chapter 13: The ArrayList class

179 views

4y ago

Erik Marsja
Pandas Groupby Tutorial Part I - Grouping by One Column

In this Pandas tutorial, you will learn how to use pandas groupby to group by one column. More specifically, you will learn how to ...

6:23
Pandas Groupby Tutorial Part I - Grouping by One Column

5,906 views

6y ago

CMPUT 175
06  Tuples and lists—CMPUT 175

Topics covered: - Tuples - Lists - Mutability 2018 © University of Alberta This work is licensed under a Creative Commons ...

7:05
06 Tuples and lists—CMPUT 175

3,726 views

8y ago

Spoken-Tutorial IIT Bombay
Plotting the data - English

Plotting the data plot L vs. T2 using square function problem with 3 cols 3rd column is error error bar.

8:28
Plotting the data - English

2,337 views

11y ago

Craig Piercy
Python data types: tuple

Today, we're talking about a data structure in Python that's like a list — but with a twist: the `tuple`. If you're wondering what makes ...

5:34
Python data types: tuple

103 views

1y ago

Craig Piercy
Python data types: bytearray

It's like a list of integers between 0 and 255 — which is how byte data is typically handled. `bytes` in Python is immutable — once ...

4:56
Python data types: bytearray

235 views

1y ago

Neo4j
Manipulate List or Array Data Structures with APOC (#9)

Cypher has already great support for lists and collections, including collect aggregations, list comprehensions and more. APOCs ...

19:31
Manipulate List or Array Data Structures with APOC (#9)

2,430 views

8y ago

Craig Piercy
Python data type: dict

Python has multiple data types and data structures that you can use to store and manipulate data efficiently. In this video, we will ...

5:32
Python data type: dict

29 views

1y ago

Craig Piercy
Python data type: str

Python has multiple data types and data structures that you can use to store and manipulate data efficiently. In this video, we will ...

5:28
Python data type: str

40 views

1y ago

Christian Drumm
Python for Beginners - Week 0 Unit 1 - Welcome

Week one, Python fundamentals like statements, variables, and data types. In week two, we cover lists and loops. In week three ...

7:04
Python for Beginners - Week 0 Unit 1 - Welcome

999 views

2y ago

Craig Piercy
Python data types: deque

It behaves like a list, but is optimized for fast appends and pops from either end. Unlike Python lists, which are built on dynamic ...

4:55
Python data types: deque

17 views

1y ago

CLARK | Cybersecurity Curriculum Digital Library
Lesson2 files python p2 default

CLARK URL: https://clark.center/details/caiyusa/Working%20with%20Files.

7:46
Lesson2 files python p2 default

3 views

7y ago

J David Eisenberg
Chapter 11: Using  Dictionaries (part 1)

A Python dictionary is a data structure that lets you associate a *key* with a *value*, much as a dictionary associates a word with ...

5:57
Chapter 11: Using Dictionaries (part 1)

101 views

3y ago

code_way
Lesson 1 Python, variables, print and type function, str and int data type

Hi, thanks for viewing. Here's how to install PyCharm and Python: ...

6:18
Lesson 1 Python, variables, print and type function, str and int data type

124 views

2y ago

Craig Piercy
Python data types: range

... Loop through indices Slice strings, lists, or arrays Control iteration step size (forward or backward) You'll see it all over Python ...

5:03
Python data types: range

21 views

1y ago

Cody Anderson
4.1 Built-in Functions Overview

Overview of using built-in functions in MATLAB. Different syntaxes. Finding help on MathWorks. Nesting functions. Examples used ...

6:19
4.1 Built-in Functions Overview

877 views

6y ago

AeStudios
Python Basics Part 1| IF ELSE, LOOPS| USER INPUT | LIBRARIES | #aestudios

Python Basics in Tamil, this video covers about if else statement, loops and getting input from user also installing libraries Let's ...

5:13
Python Basics Part 1| IF ELSE, LOOPS| USER INPUT | LIBRARIES | #aestudios

186 views

6y ago

Craig Piercy
Python data type: collections.ordereddict

Python has multiple data types and data structures that you can use to store and manipulate data efficiently. Some of them are ...

4:58
Python data type: collections.ordereddict

20 views

1y ago

Craig Piercy
Python built-in function: round()

It's a built-in Python function that rounds a number to a specified number of decimal places. Here's the syntax: round(number[, ...

4:36
Python built-in function: round()

176 views

1y ago

J David Eisenberg
Chapter 7: Passing Arrays to Functions (part 1)

Since we're displaying the array values twice, we might as well make that a function. This function doesn't return any value; it's a ...

4:27
Chapter 7: Passing Arrays to Functions (part 1)

45 views

5y ago

DigiLing
DigiLing - Introduction to Python for Linguists - Unit 8.2

Okay let's now try iterating through a list. Let's create a list of integers, for example '15'... ...let's say, '7'... ...'21'... ...'25'... ...'10'.

5:26
DigiLing - Introduction to Python for Linguists - Unit 8.2

188 views

8y ago

Craig Piercy
Python data type: bool

Python has multiple data types and data structures that you can use to store and manipulate data efficiently. In this video, we will ...

4:47
Python data type: bool

36 views

1y ago

Craig Piercy
Python data type: float

Fortunately, the python math class includes a nice function to help when comparing floats. Here we use the math.isclose() to ...

5:04
Python data type: float

29 views

1y ago

Craig Piercy
Python data type: collections.defaultdict

It requires a default factory function like `int`, `list`, or `set`. 2. It automatically creates a new value when a missing key is accessed.

4:55
Python data type: collections.defaultdict

11 views

1y ago

Applied Language Technology
Extending pandas DataFrames

In this video, I will show you how to add new information to pandas DataFrames by processing the existing data. We use pandas ...

10:08
Extending pandas DataFrames

867 views

5y ago

Craig Piercy
Python built-in function: dict()

Welcome back to another Python quick guide. Today, we're talking about the built-in Python function `dict()`. It's one of the most ...

4:12
Python built-in function: dict()

101 views

1y ago

Solve Computer Science
Simpler Python YAML

In this video you'll see a better way to handle complex YAML files: instead of using PyYAML we're going to use Mashumaro.

12:38
Simpler Python YAML

174 views

2y ago

Craig Piercy
Python data type: frozenset

Let's look at how to create and use `frozenset` in Python. You can create frozensets from lists. Here, we create fs1 from the list [1, ...

4:48
Python data type: frozenset

35 views

1y ago

Craig Piercy
Python data type: UserDict

Python has multiple data types and data structures that you can use to store and manipulate data efficiently. Some of them are ...

6:11
Python data type: UserDict

104 views

1y ago

Jacob Itegboje
Pumping  Python for Beginners: From Zero to Hero in 8 weeks

This is the start of a journey. Pumping Python is a collection of code exercises that have personally helped me read, write and test ...

4:03
Pumping Python for Beginners: From Zero to Hero in 8 weeks

226 views

2y ago

UBC_CPSC_103 _screencasts
Module 8: Line chart example

If I am designing a function that takes a list of floats I'll read the template carefully at that point. For now I just need to have a ...

6:20
Module 8: Line chart example

1,228 views

8y ago

Spoken-Tutorial IIT Bombay
Sets - English

Sets About sets in python

9:55
Sets - English

1,155 views

11y ago

David Largent
Using if/else statements while iterating through a string using Python

Demonstrates iterating through a string using a for statement in Python. Inside the for loop, if/else statements are used to ...

8:52
Using if/else statements while iterating through a string using Python

116 views

2y ago

J David Eisenberg
Chapter 4: The for loop

How to repeat Python statements without having to type them over and over again.IMPORTANT: at 2:43, I should have said “360 ...

9:43
Chapter 4: The for loop

319 views

8y ago

Spoken-Tutorial IIT Bombay
Manipulating lists - English

Manipulating lists concatenation slicing striding .sort sorted .reverse reversed.

12:37
Manipulating lists - English

982 views

11y ago