摘要: 原文地址 : https://www.cnblogs.com/lovemo1314/archive/2011/05/03/2035005.html 另一篇详细讲super原理的博客Python: 你不知道的 super: http://python.jobbole.com/86787/ 一、问题的发 阅读全文
posted @ 2018-01-10 12:39 xushukui 阅读(123) 评论(0) 推荐(0)
摘要: ``` python 先来看个例子: def foo(*args, **kwargs): print 'args = ', args print 'kwargs = ', kwargs print '---------------------------------------' if __name__ == '__main__': foo(1,2,3,4) ... 阅读全文
posted @ 2018-01-10 10:47 xushukui 阅读(808) 评论(0) 推荐(0)