发布时间:2019-06-30 15:27:19编辑:auto阅读(1784)

def cheeseshop(kind,*arguments,**keywords):
print("-- Do you have any",kind,"?")
print("-- I'm sorry, we're all out of",kind)
for arg in arguments:
print(arg)
print("-"*40)
keys = sorted(keywords.keys())
for kw in keys:
print(kw,":",keywords[kw])
f={"client":"John","sketch":"cheese"}
cheeseshop("Limburger","aaaaaaa","bbbbbbbbbb",**f)cheeseshop("Limburger","aaaaaaa","bbbbbbbbbb",client="John",sketch="cheese")功能一样,可见**args 时应为字典类型,或是关键字类型的参数。
上一篇: python 字符串切片
下一篇: 分享13个Python GUI库
51319
50771
41365
38170
32654
29543
28388
23260
23231
21556
1630°
2365°
1969°
1912°
2241°
1948°
2642°
4428°
4269°
3039°