What's the difference between input() and raw_input()?
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.
from:https://learnpythonthehardway.org/book/ex11.html
谢谢