python 关键参数和默认值

def hello_key(greeting='hello', name='world'):
    print('%s, %s' % (greeting, name))

hello_key()
hello_key(greeting='panzidong')

result:

hello, world
panzidong, world

 

关键参数的厉害地方在于可以在函数中提供默认参数

posted @ 2019-06-25 09:24  嵌入式实操  阅读(165)  评论(0编辑  收藏  举报