Skip to content

Instantly share code, notes, and snippets.

@imbyron
imbyron / bingo.py
Last active December 19, 2015 10:09
from random import randint
num = randint(1,1000)
print 'Guess what i think?'
bingo = False
while bingo == False:
answer = input()
if answer < num:
print '%d is too small.' % answer
if answer > num: