摘要: 举个例子就知道了 class test(): def __init__(self, *a, **b): print(a) print(b) print(b.get('test')) tester = test(1, 2, 3, test='abc') 输出如下 (1, 2, 3){'test': ' 阅读全文
posted @ 2019-12-09 15:04 liuxianglong 阅读(207) 评论(0) 推荐(0) 编辑