摘要: python 包,模块,类 self只有在类的方法中才会有,独立的函数或方法是不必带有self,非关键词 1 class Person: 2 def _init_(self,name): 3 self.name=name 4 def sayhello(self): 5 print 'My name 阅读全文
posted @ 2014-09-19 17:48 voh99800 阅读(217) 评论(0) 推荐(0) 编辑