Conditional Statements & Loops: Advanced Operations Using for Loops in Python


Overview/Description
Expected Duration
Lesson Objectives
Course Number
Expertise Level



Overview/Description

Explore how iterating over elements using for loops can be controlled using the break and continue statements in Python. Creating sequences from other sequences using comprehensions is also covered in this 9-video course. Key concepts covered here include how to terminate a for loop when a specific condition is met using the break statement; learning how the break statement affects the code in the else block of a for loop; and observing how to skip an iteration of a for loop when a specific condition is met using the continue statement. Next, learn how to use the continue statement along with the break statement within the same for loop; learn the fact that no action is performed under specific conditions by using the pass statement; and create a list out of the contents of another list using a comprehension. Finally, you will learn about conditions in list comprehensions in order to filter elements used in the source list and to define values in the newly created list.



Expected Duration (hours)
1.1

Lesson Objectives

Conditional Statements & Loops: Advanced Operations Using for Loops in Python

  • discover the key concepts covered in this course
  • terminate a for loop when a specific condition is met using the break statement
  • recognize how the break statement affects the code in the else block of a for loop
  • skip an iteration of a for loop when a specific condition is met using the continue statement
  • use the continue statement along with the break statement within the same for loop
  • convey the fact that no action is performed under specific conditions by using the pass statement
  • create a list out of the contents of another list using a comprehension
  • specify conditions in list comprehensions in order to filter elements used in the source list and to define the values in the newly created list
  • write for loops that make use of the break and continue statements to control flow and use comprehensions to generate a list
  • Course Number:
    it_pycslpdj_03_enus

    Expertise Level
    Beginner