Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ludwa6
ludwa6 / test3gist2rss.txt
Created November 26, 2017 13:41
test3 of gist2rss function
Testing the gist2rss function.
Hope it works!
/w
# guess a number between 1 and 100 in seven tries
import random
answer = 'yes'
while answer == "yes":
NumToGuess = random.randint(1, 100)
NumOfTry = 7
print ''
print "I am thinking of a number between 1 and 100"
print "Try to guess the number in 7 tries"
print ''