1 def add(a,b): 2 return a+b 3 4 d = {"a":1,"b":2} # 两个**代表传的是字典 5 L= [1,2,3] # 一个*代表传的是list 6 print(add(**d)) 7 print(*L)