Python L5 While Loops
Python L5 While Loops
Introduction to Python
Learning objectives
• Use a while loop in a program
• Use an if statement within a while loop
• Use a function to generate a random number
Homework
What is pseudocode?
• Write the meaning? And see if you can find an
example.
Introduction to Python
While loops
If condition
is true
Conditional Code
Introduction to Python
While loops
Guess my number!
• Create a computer game where the computer
generates a random number between 1 and 100 and
you have to guess the number
• The game should keep a record of how many
attempts you took
• The computer should tell you whether you are too
high, too low or correct with each guess
Introduction to Python
While loops