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
559 results
Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...
615 views
1 year ago
In a preceding video, we had duplicated code to read the user input outside the loop and inside the loop. To avoid duplicated ...
387 views
4 years ago
Use a *while* loop to repeatedly get input in a program.
312 views
6 years ago
Global variables may seem like an easy solution to a lot of problems, but they introduce serious problems of their own.
107 views
This is a loop to use when you don't know in advance how many iterations you need.
266 views
7 years ago
In this comprehensive tutorial, you will unlock the secrets of controlling program flow with Python conditions. Whether you're just ...
40 views
So in order to control this, this is up to the programmer to decide which data structure is going to use to represent logical matrices.
50 views
3 years ago
408 views
Python for else loop explained! Learn how the for-else statement works with break statements in Python. This controversial Python ...
1,119 views
Introduction to loops, with the *while* loop, which continues as long as a condition is true.
361 views
The break statement lets you exit a loop from the middle; the continue statement takes you to the next iteration of a loop.
248 views
Session 07: Control FLOW in Python: If-else, if-elif-else, ternary operator Welcome to the 7th session of our GCSE Computer ...
2,410 views
You can use booleans in the condition of a while loop. This will avoid duplicate code in a loop that asks for user input.
246 views
The for loop is useful when you know how many iterations your loop needs. When you don't know in advance how many iterations ...
16 views
Learn when to use -- and not to use -- exceptions.
112 views
In this video, we will discuss the python data structure: dict. Hey everyone! Welcome back. In today's video, we're diving into one ...
21 views
7 months ago
This control structure in Python or in programming is called a loop. And in Python, we have two kinds of loops. There is a "for" loop ...
201 views
The break statement lets you exit from a loop before the loop condition says it's complete. The continue statement lets you jump to ...
799 views
More details on the scanf() function, the input buffer, and problems you may encounter with them. Also how to solve the problems ...
725 views
In this course, our style guidelines tell you to *always* use braces with if statements. This video explains the problems you could ...
144 views