educoder第1关:学习-Python函数之函数参数
2021/11/9 9:09:42
本文主要是介绍educoder第1关:学习-Python函数之函数参数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
""" 任务:自定义函数message,实现学生的信息输出。 """ ''' 定义函数message,参数有位置参数name,默认参数age(默认值为6),可变参数scores, 关键字参数kw ''' ########### Begin ########### # 第一步:定义参数 def message(name,age=6,*scores,**kw): result=0 # 第二步:对可变参数scores进行求和,将结果赋值给result for i in scores: result=result+i # 第三步:通过print打印信息,输出格式可以参考下方的测试集 print('name:',name,'age:',age,'result:',result,'kw:',kw) ########### End ########### # 以下为测试代码,不是本实训要求掌握的内容,请不要修改 if __name__=='__main__': sign = int(input()) if sign == 0: name = input() message(name) elif sign == 1: name = input() age =int( input()) message(name, age = age) elif sign == 2: name = input() age =int( input()) score1 = int(input()) score2 = int(input()) message(name,age, score1, score2) elif sign ==3: name = input() age =int( input()) score1 = int(input()) score2 = int(input()) kw = {'hobby':'basketball'} message(name,age,score1, score2, **kw) else: name = input() age =int( input()) score1 = int(input()) score2 = int(input()) kw = {'height':122, 'weight': 20} message(name,age, score1, score2, **kw)
这篇关于educoder第1关:学习-Python函数之函数参数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门