标签: with-statement contextmanager
有没有办法将语句重命名为none? 例如,
class MyClass(object): def test(self,s): print s
然后我想在用户的上下文中执行这个字符串代码,例如
with MyClass(a): test("hello")