Python L5 While loops
Python L5 While loops
Introduction to Python
Starter
What is pseudocode?
• Write the meaning? And see if you can find an
example.
Learning Objective Success Criteria
• Use a while loop in a • Use an if statement within a
while loop
program
• Use a function to generate a
random number
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