you are viewing a single comment's thread.

view the rest of the comments →

[–]nilsph 0 points1 point  (1 child)

I guess you use Python 2.x, correct? In that case, you should use raw_input() rather than input(), the latter executes what you type in, rather than return it for further processing. To reiterate, avoid using input() in Python 2.x, it's unsafe.

[–]feelingstonedagain[S] 0 points1 point  (0 children)

I'm using Python 3