''' eval()用来把任意字符串转化为Python表达式并进行求值 ''' print(eval('3+4')) #计算表达式的值 a=3 b=4 print(eval('a+b')) #这时候要求变量a和b已存在 import math eval('help(math.sqrt)') # Help on built - in function sqrt in module math:\ # sqrt(...) # sqrt(x) # # Return the square root of…