Answers for "what does the eval function do in python"

0

eval in python

#string in another string
expr="'2+3'"
print(eval(expr))
print(eval(eval(expr)))
Posted by: Guest on July-10-2021

Code answers related to "what does the eval function do in python"

Python Answers by Framework

Browse Popular Code Answers by Language