首页 > 代码库 > Python学习笔记(2.1)函数参数练习
Python学习笔记(2.1)函数参数练习
- 关键字参数 和 命名关键字参数
# -*- coding: utf-8 -*-def print_scores(**kw): print(‘ Name Score‘) print(‘-----------------------‘) for name, score in kw.items(): print(‘ %10s %d‘ % (name, score)) print()print(print_scores(Adam=99, Lisa=88, Bart=77))data = { ‘Adam Lee‘: 99, ‘Lisa S‘: 88, ‘F.Bart‘: 77,}print_scores(**data)def print_info(name, *, gender, city=‘Beijing‘, age): print(‘Personal Info‘) print(‘---------------‘) print(‘ Name: %s‘ % name) print(‘ Gender: %s‘ % gender) print(‘ City: %s‘ % city) print(‘ Age: %s‘ % age) print()print_info(‘Bob‘, gender=‘male‘, age=20)print_info(‘Lisa‘, gender=‘female‘, city=‘Shanghai‘, age=18)
Python学习笔记(2.1)函数参数练习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。