1 / 15

Mastery Objective:

Mastery Objective:. Students will understand how to use while loops in computer programming. Agenda.

ganya
Télécharger la présentation

Mastery Objective:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  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.”

More Related