Download presentation
Presentation is loading. Please wait.
Published byAnis Quinn Modified over 9 years ago
1
Mastery Objective: Students will understand how to use while loops in computer programming
2
Agenda If-else and if-elif-else assignment due tomorrow (Wednesday) by the end of class with no scheduled in class time. If you haven’t finished the assignment, plan to stay after or come in early to finish the assignment. Notes: While loops Programming assignments
3
While loops Basic principle: While something is true, repeat something Basic structure: while response != “Because.”: response = raw_input(“Why? “)
4
Similarities and differences between if and while structure In both structures, if the condition is true, the block is executed. What is different: In the while structure, the block is executed until it is false.
5
Sentry Variable Often, sentry variables control the while loop response variable in example code while response != “Because.”: response = raw_input(“Why? “) Must be intialized prior to use, usually right before while loop. Usually initialized to empty variable response = “ “
6
example response = “” while response !=“No”: response = “raw_input(“Try again!”): print “All done!”
7
Infinite Loop Loop that never ends. Example counter = 0 while counter <=10 print counter Forgot to increase counter variable Counter +=1
8
How to Stop an Infinity Loop Control key +C
9
Setting values as true or false When using numbers: 0 is false other numbers are true if money: print “Thank you!” else: print “I am sorry there are no seats available.”
10
Intentional Infinity loops There is a place for infinite loops Count = 0 While Ture: count +=1 if count >10: break (breaks loop) if count ==5; continue (jump back to top of loop) print count
11
Break and Continue Used in any type of loop Should be used sparingly
12
Using compound conditions Uses logical operators
13
not Logical Operator Example username = “ “ while not username: username = raw_input(“Username: “) Loop continues to ask for a username until the user enters something
14
And Logical Operator elif username == “S. Meier” and password ==“civilization”:
15
Or Logical operator example elif username==“guest” or password ==“guest”: print “Welcome, guest.”
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.