python in实现
>>> from math import sqrt>>> scope={}>>> exec('sqrt=1',scope)>>> sqrt(9)3.0>>> scope[