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
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
-- 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