Re: help with this game
From: Alex Endl (alexendl_at_hotmail.com)
Date: 07/19/04
- Next message: Jeff Epler: "Re: Sorted list as an alternative to dictionary for when you only need keys?"
- Previous message: John Roth: "Re: unittest: Proposal to add failUnlessNear"
- In reply to: Alex Endl: "help with this game"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
>
>
- Next message: Jeff Epler: "Re: Sorted list as an alternative to dictionary for when you only need keys?"
- Previous message: John Roth: "Re: unittest: Proposal to add failUnlessNear"
- In reply to: Alex Endl: "help with this game"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|