?
2011-04-05 16:53:33 UTC
>>> x = 5
>>> x
5
>>> x = Hello
>>> x
Hello
If I were writing a Python program in Notepad, and I used that code in that order, does x=Hello only after I declare it, and does x = 5 only after I declare it and before I declare x = Hello
???
Thank you.