Re: help with this game

From: Alex Endl (alexendl_at_hotmail.com)
Date: 07/19/04


Date: Mon, 19 Jul 2004 00:23:40 -0500

thanks, helped a lot
"Alex Endl" <alexendl@hotmail.com> wrote in message
news:10fijmnf86rkr20@corp.supernews.com...
> 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
>
>



Relevant Pages

  • help with this game
    ... ok now that i know the random function, i made this guessing game. ... and Im new so im not to good at figuring out what its talking ... print "to play type in a number between 1 and 100." ...
    (comp.lang.python)
  • Re: help with this game
    ... > ok now that i know the random function, i made this guessing game. ... so it complains. ... Nick ...
    (comp.lang.python)