- 1、本文档共21页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
Python语言程序设计【函数参数】主讲老师:施莉莉
PythonLanguageProgramming[FunctionParameters]Lecturer:ShiLili
知识点【函数参数】函数的参数分类:1.必需参数2.默认参数3.关键字参数4.不定长参数5.匿名函数中的参数
KnowledgePoints[FunctionArguments]Classificationofargumentstofunctions:1.Requiredparameters2.Defaultparameters3.Keywordparameters4.Indefinitelengthparameters5.Parametersinanonymousfunctions
知识点【函数参数】1.必需参数指的是函数要求传入的参数,调用时必须以正确的顺序传入,并且调用时的数量必须和声明时一致,否则会出现语法错误。【例】带必需参数的函数sayHello1234567defsayHello(name):
print(Hello!+name)
return
#调用sayHello函数
sayHello(DerisWeng)
sayHello()调用sayHello(“DerisWeng”)Hello!DerisWeng调用sayHello()报错!!!
[FunctionArguments]1.Requiredparametersreferstothefunctionrequiredtopassparameters,thecallmustbepassedinthecorrectorder,andthenumberofcallsmustbeconsistentwiththedeclaration,otherwisetherewillbesyntaxerrors.[Example]SayHellofunctionwithrequiredparameters1234567defsayHello(name):
print(Hello!+name)
return
#CallthesayHellofunction
sayHello(DerisWeng)
sayHello()CallsayHello(DerisWeng)Hello!DerisWengCallsayHello()ErrorReporting!!!!KnowledgePoints
知识点【函数参数】2.默认参数指的是当函数中的参数设置了默认值,在调用函数时,如果没有给该参数传递任何值,则函数将会使用默认值。【例】带默认参数的函数sayHello1234567defsayHello(name,times=1):
print((Hello!+name)*times)
return
#调用sayHello函数
sayHello(DerisWeng)
sayHello(DerisWeng,3)调用sayHello(“DerisWeng”)Hello!DerisWeng调用sayHello(“DerisWeng”,3)Hello!DerisWengHello!DerisWengHello!DerisWeng
[FunctionArguments]2.thedefaultparametersmeansthatwhenadefaultvalueissetforaparameterinafunction,thefunctionwillusethedefaultvalueifnovalueispassedtotheparameterwhenthefunctioniscalled.[Example]ThefunctionsayHellowithdefaultparameters1234567defsayHello(name,times=1):
print((Hello!+name)*times)
return
#CallthesayHellofunction
sayHello(DerisWeng)
sayHello(DerisWeng,3)CallsayHello(DerisWeng)Hello!DerisWengCallsayHello(DerisWeng,3)Hello!DerisWengHello!Deri
您可能关注的文档
- 果树生产技术-1733233734003.pptx
- 海底捞企业文化 案例-制作人郭鑫华-17332337220.pptx
- 海上丝绸之路-授课蓝贤钢 珠海城市职业技术-1733233.pptx
- 含氮原六元环合成-在讲授含氮六元环药物中间体合成方法时以杜.pptx
- 函数参数 -Python 语言程序设计-17332334.pptx
- 函数的递归调用及实例 4.2.6-主讲金红 内蒙古建筑职业.pptx
- 函数的定义和调用 -Python 语言程序设计-1733.pptx
- 函数作用域 -Python 语言程序设计-1733234.pptx
- 焓湿图的应用-暖通空调技术 暖通空调技术-17334139.pptx
- 韩熙载 夜宴图-1733234558743.pptx
文档评论(0)