mercredi 13 décembre 2017

Python Bugs in coin toss game

Simple python 2 guess coin toss game. Not sure where I am going wrong but I cannot code the correct syntax to print "you got it" when the user guesses correctly....

import random
guess = ''
while guess not in ('heads', 'tails'):
    print('Guess the coin toss! Enter heads or tails:')
    guess = input()
toss = random.randint(0, 1) # 0 is tails, 1 is heads
if toss == guess:
    print('You got it!')
else:
    print('Nope! Guess again!')
    guess = input()
    if toss == guess:
       print('You got it!')
    else:
        print('Nope. You are really bad at this game.')




Aucun commentaire:

Enregistrer un commentaire