I was reading this Python 2.7 tutorial and they're going over raw_input(), and it mentions that:
The input() function will try to convert things you enter as if they were Python code, but it has security problems so you should avoid it.
I tried Googling some explanations for this, but still a bit unclear to me; what's a simple explanation of the alleged inherent security issues with input() vs raw_input() ?