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
148 results
Some decision structures require you to put if statements inside if statements. That's called a “nested if” statement.
118 views
5 years ago
Python beginner course without using any IDE. This chapter explores nested conditional statements. #pythonbeginner ...
32 views
3 years ago
In this comprehensive tutorial, you will unlock the secrets of controlling program flow with Python conditions. Whether you're just ...
40 views
2 years ago
You can put an if inside an if block, or an if inside an else block. This video explains how it works.
303 views
4 years ago
You'll explore comparison operators, logical operators (and, or), and how to create nested if statements for more complex ...
597 views
1 year ago
Python lets you put if statements inside of if statements. We'll examine some examples of that in this video.
144 views
7 years ago
You can add power to your programs by putting if statements inside of other if statements.
250 views
Nesting if/else statements to test multiple conditions -- and a convenient shortcut for writing such statements.
2,023 views
6 years ago
Describes nested decision structures and the use of compound boolean statements. Multiple approaches to solving a sales ...
748 views
10 years ago
In this Python tutorial for beginners, we dive into conditional statements (if, elif, else) to show you how to make decisions in your ...
57 views
If you are testing similar conditions and finding yourself writing a lot of else-if pairs, you can combine them to elif and save yourself ...
202 views
This video shows you the difference between an if-else-if chain and a series of if statements.
213 views
Learn about conditional statements.
354 views
How can you avoid deeply nested error handling code? This week we review Gabriel Gonzalez's trick for keeping error handling ...
74 views
A nice, clean way to compare multiple values in an "if condition" is to use tuples. Check out this short to see how. #python ...
130 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
When should you use braces around the body of an if/else? (Spoiler alert: always.)
679 views
Use of && (and), || (or), and ^ (exclusive or) to combine conditions.
229 views
Try and Except statements in Python checking for value errors and input/output errors. View an annotated PDF transcription of the ...
377 views
8 years ago
In this course, our style guidelines tell you to *always* use braces with if statements. This video explains the problems you could ...
157 views