Sections 9 & 11 Hacks
print("Should we go outside?")
isCold = False
isRaining = True
if isCold == True:
print("Stay inside it's cold")
if isRaining == True:
print("Stay inside, it's raining")
import random
attempts = 0
tempScore = 0
bestScore = 0
while attempts < 4:
tempScore = random.randint(1,10)
print(tempScore)
if tempScore > bestScore:
bestScore = tempScore
attempts += 1
print("Your highest score is", bestScore)