help with this game

Alex Endl alexendl at hotmail.com
Sat Jul 17 12:08:03 EDT 2004


ok now that i know the random function, i made this guessing game.  I get an
error though, and Im new so im not to good at figuring out what its talking
about.


import random
a = random.randint(1, 100)
b=-100
c=0
print "Welcome to guess the number"
print "to play type in a number between 1 and 100."
print "but you only get ten tries"
while a != b:
    c = c + 1
    b = input ("enter guess:")
    if b < a :
        print "to low"
        if c == 10:
            print "to many guesses"
        print "trie number", c ("out of 10")
    elif b > a :
        print ("to high")
        if c == 10:
            print "to many guesses"
        print "trie number", c ("out of 10")
print "you got it in ",c," tries"


thanks for your time





More information about the Python-list mailing list