Python学习笔记(5):函数
在前面我们已经见过一些Python内建函数,比如len和rang。现在我们来看看自定义函数,函数是通过def关键字来定义,后面跟函数名称和圆括号,括号内可以包含参数,该行以冒号结束,接下来是语句块,即函数体。
1. 简单的sayHello函数
1 2 3 4 5 | def sayHello(): print ( "Hello world!" ) #调用函数 sayHello() |
2. 带形参函数
1 2 3 4 5 6 7 | def printMax(a, b): if a > b: print (a, "is maximum." ) else : print (b, "is maximum." ) printMax( 3 , 4 ) |
3. 局部变量
1 2 3 4 5 6 7 8 | def func(x): print ( "x is " , x) x = 2 print ( "Changed local x to " , x) x = 50 func(x) print ( "x is still " , x) |
运行结果为:
x is 50
Changed local x to 2
x is still 50
4. 默认参数值
1 2 3 4 5 | def say(message, times = 1 ): print (message * times) say( "ha" ) say( "ha" , 2 ) |
运行结果为:
ha
haha
5. 关键参数
1 2 3 4 5 6 | def func(a, b = 5 , c = 10 ): print ( "a is" , a, "and b is" , b, "and c is" , c) func( 3 , 7 ) func( 25 , c = 24 ) func(c = 50 , a = 100 ) |
运行结果为:
a is 3 and b is 7 and c is 10
a is 25 and b is 5 and c is 24
a is 100 and b is 5 and c is 50
6. return语句
1 2 3 4 5 6 7 | def maximum(x, y): if x > y: return x else : return y print (maximum( 2 , 3 )) |
7. 文档字符串DocStrings
Python有一个奇妙的特性,就是文档字符串(DocStrings),它的主要作用就是帮助你的程序文档更加简单易懂。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def printMax(x, y): '''Prints the maximum of two numbers. The two values must be integers.''' x = int (x) y = int (y) if x > y: print (x, "is maximum." ) else : print (y, "is maximum." ) printMax( 3 , 5 ) print (printMax.__doc__) help (printMax) |
运行结果为:
5 is maximum.
Prints the maximum of two numbers.
The two values must be integers.
Help on function printMax in module __main__:
printMax(x, y)
Prints the maximum of two numbers.
The two values must be integers.
分类:
07 Python
Known 是基于 Blazor 轻量级、跨平台、低代码、易扩展的插件开发框架。
源码:https://gitee.com/known/Known
源码:https://github.com/known/Known
如果对您有帮助,点击⭐Star⭐关注 ,感谢支持开源!
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 如何打造一个高并发系统?