8y5 python loops

6
Loopy Loops

Upload: clare-applegate

Post on 07-Apr-2017

486 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: 8y5 python loops

Loopy Loops

Page 2: 8y5 python loops

LEARNING OBJECTIVE

Understand how to create a loop in Python and use a

Boolean variable to define when to stop.

Page 3: 8y5 python loops

ANOTHER VARIABLE

Boolean – This can store one of two values:▪ True▪ False

Page 4: 8y5 python loops

LOOPSA While loop can keep looping through events until a condition changes.

WHILE hungry == TrueKeep eatingIF I’m full up

hungry == False

Page 5: 8y5 python loops

Have a go at this ‘Guess the Number’ game. What

does each part do?

Page 6: 8y5 python loops

LEARNING OBJECTIVE

Understand how to create a loop in Python and use a

Boolean variable to define when to stop.

or