Re: [Tutor] Fwd: Python skipping if statement (Really simple code)

2011-04-16 Thread Sotiris Tsartsaris
this proceed = input(int("Do you want to see Renees hate in form of a > picture? ")) > if proceed == "yes": > > should be proceed = input("Do you want to see Renees hate in form of a picture? ") if proceed == "yes": cause you are checking for a yes or no but you convert the input

Re: [Tutor] Fwd: Python skipping if statement (Really simple code)

2011-04-15 Thread Peter Otten
Casey Key wrote: > -- Forwarded message -- > From: Casey Key > Date: Thu, Apr 14, 2011 at 4:02 PM > Subject: Python skipping if statement (Really simple code) > To: tu...@python.com > > > Hey im a newbie to python, but i made this test code. and it is just > skipping over the if

[Tutor] Fwd: Python skipping if statement (Really simple code)

2011-04-15 Thread Casey Key
-- Forwarded message -- From: Casey Key Date: Thu, Apr 14, 2011 at 4:02 PM Subject: Python skipping if statement (Really simple code) To: tu...@python.com Hey im a newbie to python, but i made this test code. and it is just skipping over the if statement, which is essential to th