日常生活的交流与学习

首页 新随笔 联系 管理

输出

image

代码

# 定义一个接受任意个参数的函数,同时支持位置传参和关键字传参
def getVaribaleParameter(*args,**kwargs):
    print(args)
    print(kwargs)

getVaribaleParameter('Alice',19,'female',father='Bruce',mother='Celina')
print('----------------------')
getVaribaleParameter('Tom',18,' male',father='Bruce',mother='Celina',sister='Alice')

posted on 2022-06-02 14:24  lazycookie  阅读(24)  评论(0编辑  收藏  举报