MCPcopy Create free account
hub / github.com/ZiniuLu/Python-100-Days / f3

Function f3

Day01-15/Day06/function5.py:41–47  ·  view source on GitHub ↗
(**kw)

Source from the content-addressed store, hash-verified

39
40# 关键字参数
41def f3(**kw):
42 if 'name' in kw:
43 print('欢迎你%s!' % kw['name'])
44 elif 'tel' in kw:
45 print('你的联系电话是: %s!' % kw['tel'])
46 else:
47 print('没找到你的个人信息!')
48
49
50param = {'name': '骆昊', 'age': 38}

Callers 1

function5.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected