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 of the user
to an integer.

nice drawings by the way

-- 
Tsartsaris Sotirios
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to