进步123 - 2102/10/8
摘要:卡根认为,成功的关键在于保持谦虚,在团队协调会上倾听他人的意见,并关注作为团队一员需要怎样的改进。from:http://www.csdn.net/article/2012-10-01/2810524
阅读全文
Python 子类调用父类的构造函数
摘要:from:http://www.xinotes.org/notes/note/517/For old-style classes:BaseClassName.methodname(self, arguments)>>> class A:... def hello(self):... print 'a'...>>> A().hello()a>>> class C(A):... def hello(self):... A.hello(self)... print 'c'...>>> C().he
阅读全文