I remember the good, ol' days when I remembered how to quote somebody (and even remove what they said and just "tag" them in my new post, so-to-speak).
I am running Python 3.2. Started off on 2.7, but just upgraded and I am liking it more.
So I guess to start, I don't need raw_input
So if I am stuck inside an infinite loop, I should change my code to...
mystring = input("Write something: ")
while mystring != "ten angry birds":
print "this is not the answer we're looking for\n"
mystring = input("Write something: ")
You know, studying your example AP, it makes so much more sense!
Defron:
As someone who is actively/inactively using 3.3, what sort of suggestions would you offer to a newbie Python 3.x programmer?
Same question back to you Defron, but less 3.x answers obviously!
Thanks guys! I'm going to try tinkering with my code. I've practiced for hours today, and I just took my first break for a couple hours, so I'm ready to go again now. I definitely see how taking breaks is important.
Edit: Ditre, can you explain how I exactly trapped myself inside an infinite loop?