专题文章
时长:00:00更新时间:2020-11-27 14:27:09
Python基础学习代码之执行环境:class C(object): def __call__(self, *args, **kwargs): print "I'm callable! called with args:\n",args c = C() c('a',1) single_code = compile("print 'hello,world!'",'','single') exec(sin
查看详情