In the book that I am reading on Python, it keeps using the code eval(input(\'blah\'))
eval(input(\'blah\'))
I read the documentation, and I understand it, but I still do no
Maybe a misleading example of reading a line and interpreting it.
Try eval(input()) and type "1+1" - this should print 2. Eval evaluates expressions.
eval(input())
"1+1"
2