Python语句重命名为none(上下文管理器)

时间:2018-02-11 19:57:38

标签: with-statement contextmanager

有没有办法将语句重命名为none? 例如,

class MyClass(object):
   def test(self,s):
      print s      

然后我想在用户的上下文中执行这个字符串代码,例如

with MyClass(a):
    test("hello")
然后它会打印出来"你好" 什么是设计模式以及如何以这种方式转换用户代码?

0 个答案:

没有答案