Re: [Tutor] Print/Loop Question

2011-03-17 Thread bob gailer
On 3/17/2011 1:19 PM, Jeff Goodwin wrote: I'm trying to run the below program and get it to print out feedback as the loop goes. However, if you enter a number too high or too low, it skips the print statement under the if and elif clauses and asks the user to "Guess a number between 1-100" aga

Re: [Tutor] Print/Loop Question

2011-03-17 Thread Jack Trades
On Thu, Mar 17, 2011 at 1:19 PM, Jeff Goodwin wrote: > I'm trying to run the below program and get it to print out feedback as the > loop goes. However, if you enter a number too high or too low, it skips the > print statement under the if and elif clauses and asks the user to "Guess a > number be

Re: [Tutor] Print/Loop Question

2011-03-17 Thread michael scott
print ("Too low") else: print ("Just right" ) If I'm misunderstanding your problem, I'm sorry. What is it about you... that intrigues me so? From: Jeff Goodwin To: tutor@python.org Sent: Thu, March 17, 2011 2:19:1

[Tutor] Print/Loop Question

2011-03-17 Thread Jeff Goodwin
I'm trying to run the below program and get it to print out feedback as the loop goes. However, if you enter a number too high or too low, it skips the print statement under the if and elif clauses and asks the user to "Guess a number between 1-100" again. Any suggestions on how to get it to print