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
602 results
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
Unlock personalized mentorship, early access to exclusive AI resources, and join a supportive learning community—sign up now ...
675 views
1 year ago
451 views
In this comprehensive tutorial, you will unlock the secrets of controlling program flow with Python conditions. Whether you're just ...
40 views
Learn about conditional statements.
348 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.
3,400 views
You can build arrays of structures, or use arrays as structure members; you can even have structures that contain other structures ...
180 views
5 years ago
Use a *while* loop to repeatedly get input in a program.
317 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
Introduction to loops, with the *while* loop, which continues as long as a condition is true.
363 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
What you'd like to do is collect these separate variables into a single data structure. The way you do that in C is to start with the ...
242 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
Find out how scanf() works its magic of changing arguments, and how you can use pointers to do the same.
195 views
The for loop is a shorthand for a while loop; it specifies the initial loop variable, the continuation test, and the action after each ...
272 views
4 years ago
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
You can find the lecture notes and exercises for this lecture at https://missing.csail.mit.edu/2026/command-line-environment/ ...
14,804 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)
You can have multiple methods with the same name as long as the number and/or types of the parameters is different.
234 views