Title: while Statement
Slug: while_statements
Summary: while Statement
Date: 2016-05-01 12:00
Category: Python
Tags: Basics
Authors: Chris Albon
In [1]:
import random
In [2]:
deaths = 6
In [3]:
running = True
In [4]:
while running:
# Create a variable that randomly create a integer between 0 and 10.
guess = random.randint(0,10)
# if guess equals deaths,
if guess == deaths:
# then print this
print('Correct!')
# and then also change running to False to stop the script
running = False
# else if guess is lower than deaths
elif guess < deaths:
# then print this
print('No, it is higher.')
# if guess is none of the above
else:
# print this
print('No, it is lower')
By the output, you can see that the while script keeping generating guesses and checking them until guess matches deaths, in which case the script stops.