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
521 results
Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...
675 views
1 year ago
In this comprehensive tutorial, you will unlock the secrets of controlling program flow with Python conditions. Whether you're just ...
40 views
451 views
The break statement lets you exit a loop from the middle; the continue statement takes you to the next iteration of a loop.
250 views
6 years ago
You can use booleans in the condition of a while loop. This will avoid duplicate code in a loop that asks for user input.
3,400 views
In a preceding video, we had duplicated code to read the user input outside the loop and inside the loop. To avoid duplicated ...
392 views
5 years ago
You can build arrays of structures, or use arrays as structure members; you can even have structures that contain other structures ...
180 views
This is a mini-lecture to accompany Chapter 1 in the book: “How to Think Like a Computer Scientist” at ...
897 views
7 years ago
This is a loop to use when you don't know in advance how many iterations you need.
267 views
Use a *while* loop to repeatedly get input in a program.
317 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 ...
806 views
But now the question is, what do we need to do, or what do we need to have, to implement this conditional control flow in Python?
282 views
2 years ago
Introduction to loops, with the *while* loop, which continues as long as a condition is true.
363 views
Demonstrates iterating through a string using a for statement in Python. Inside the for loop, if/else statements are used to ...
86 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
Welcome to Dihaz Echo! I'm Wazir Dihaz, and in this video, we're diving deep into Conditional Statements in Python – a ...
16 views
10 months ago
I don't think this is covered in the book, but knowing about nested loops lets you do all sorts of neat stuff, so here it is. Note: the ...
246 views
You can find the lecture notes and exercises for this lecture at https://missing.csail.mit.edu/2026/command-line-environment/ ...
14,621 views
1 month ago
Some decision structures require you to put if statements inside if statements. That's called a “nested if” statement.
110 views
Use range() when you need a variable for the number of times to loop. (Sorry about the repeated narrative at 4:50)
272 views