Re: [Tutor] Guessing Game Program

2011-03-26 Thread Malcolm Newsome
s > random_num:# user gets second chance if number is too high print retry("high", random_num) else: print nope_message(random_num) if __name__ == "__main__": main() -Original Message- From: Donald Bedsole [mailto:drbeds...@gmail.com] Sent: T

Re: [Tutor] Guessing Game Program

2011-03-24 Thread Donald Bedsole
On Fri, Mar 25, 2011 at 12:53 AM, Donald Bedsole wrote: > Hi Malcolm :-) > > On Fri, Mar 25, 2011 at 12:37 AM, Malcolm Newsome > wrote: >> Hey Don! >> >> I posted an eerily similar request to another python group about two weeks >> ago!  I, too, am very new to programming and the guessing game wa

Re: [Tutor] Guessing Game Program

2011-03-24 Thread Malcolm Newsome
ge(random_num) if __name__ == "__main__": main() -Original Message- From: tutor-bounces+malcolm.newsome=gmail@python.org [mailto:tutor-bounces+malcolm.newsome=gmail@python.org] On Behalf Of Donald Bedsole Sent: Thursday, March 24, 2011 10:55 PM To: tutor Su

[Tutor] Guessing Game Program

2011-03-24 Thread Donald Bedsole
Hi folks, This is a little program I've written to bring together some things I've been trying to learn (not an attempt, of course, to make an interesting game).. I've been working my way through a beginner's tutorial, and except for a very basic program I wrote in C++ one time, I think this is t