Session 14 Preparation — Videos, Reading and Quizzes

Instructions:

For each of the following videos or reading:

Videos and Reading:

  1. The   Wait Until Event Pattern   and   while True:   Loops

    Note: WHILE loops are traditionally introduced in the form:

    while some-condition:
        do-stuff

    We will instead use the less common form:

    while True:
        do-stuff-here-if-you-want
        if some-condition:
            break
        do-stuff-here-if-you-want

    See the video for details.