Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
356 results
Join our Patreon: https://www.patreon.com/cw/socratica Sign up for Socratica Courses: ...
3,343 views
15 hours ago
Save the date for Python Unplugged – a free online conference on March 4: https://jb.gg/pytv2026 In this video, you'll learn ten ...
11,613 views
5 days ago
Here's a classic interview question, reframed as a code golf challenge.Write a function that checks whether parentheses, square ...
6,260 views
1 day ago
This video shows Python loop through list with index and value. In a classic for loop, you loop through just the items in the list.
63 views
2 weeks ago
This video shows Python iterate over two lists at once. It shows using the zip function to "zip" two lists together so they can be ...
544 views
This tutorial explains how to find the first occurrence, last occurrence, and count of occurrences of a target element in a sorted list ...
128 views
Learn about variables, integers, floats, and math.
10 views
6 days ago
Binary Search is one of the most important algorithms in Data Structures & Algorithms (DSA). If you don't fully understand it, you ...
53 views
3 weeks ago
Python for Beginners, python for students, free python course. This video is part of a free and open set of complete course ...
0 views
7 days ago
Matrix problems look scary until you understand traversal patterns. This video teaches how to think in rows/columns and solve ...
1 view
1 month ago
We show the process of reading a csv file into NumPy array, transform ndarray to tensor in PyTorch. Then take column and set as ...
19 views
This video answers how to get absolute value in Python without using abs. It's fairly simple, you just create your own absolute ...
137 views
We show the procedures of setting up time series data as tensors as input to deep learning model with PyTorch. In specificity, we ...
16 views
This video answers how to loop through a list in reverse Python. It shows the main method by using the reversed function within a ...
13 views
13 days ago
In Python, the all function returns whether or not a container is empty, or contains all truthy elements. This video explains the truthy ...
141 views
This is Lecture 3 of the Python Programming series. Python Variables Explained | Type Casting a Variable | Lecture 3 | Python for ...
25 views
If you're learning Python and wondering why arithmetic behaves differently with strings, lists, or Booleans, this video is for you.
71 views
Welcome to this Go Programing Course. In this course you will learn all about the Go Programing language, starting at the basic ...
29,472 views
This lesson explains how to find the first occurrence of a target element in a sorted list containing duplicate values using Python.
192 views
Grid backtracking problems are super common (maze paths, word search, island paths). This video teaches the exact template to ...