摘要: ``` x = 11 #global def f(): print x #global def g(): x = 22 #local print x class c: x = 33 # class attribute def m(self): x = 44 #local variable self.x = 55 #instance... 阅读全文
posted @ 2017-04-26 13:39 zeroArn 阅读(192) 评论(0) 推荐(0)