Python mengevaluasi string

# Be *extremely* cautious when using eval(), make sure that the user can't
# execute their own code, otherwise it's a very helpful function.
>>> eval("print(\"Hello, World!\")")
Hello, World!
expliked