3rd day of python challenges 51-59

This commit is contained in:
abd.shallal 2019-07-18 12:47:42 +03:00
parent f132554039
commit 30d27afab2

View File

@ -4,7 +4,7 @@ color = ['red', 'blue', 'green', 'orange', 'black']
select_color = random.choice(color)
ask = 0
while select_color != ask:
ask = str(input('Choose colour to guess computer colour! : '))
ask = str(input('Choose colour to guess computer colour! : ')).lower()
if select_color != ask:
print('You are probably feeling {0} right now'.format(select_color))
print('Well done')