摘要: 一、可变参数 1.1 元组 """可变参数""" def test01(a,b,*c): print(a,b,c) test01(10,20,33,44,55) # 10 20 (33, 44, 55) 1.2 字典 def test02(a,b,**c): print(a,b,c) test02( 阅读全文
posted @ 2020-05-11 16:12 旅行没有终点 阅读(291) 评论(0) 推荐(0) 编辑