首页 > Python > 函数和lambda表达式
Python函数关键字参数及用法
目前为止,我们使用函数时所用的参数都是位置参数,即传入函数的实际参数必须与形式参数的数量和位置对应。而本节将介绍的关键字参数,则可以避免牢记参数位置的麻烦,令函数的调用和参数传递更加灵活方便。
关键字参数是指使用形式参数的名字来确定输入的参数值。通过此方式指定函数实参时,不再需要与形参的位置完全一致,只要将参数名写正确即可。
当然,还可以像第 7 行代码这样,使用位置参数和关键字参数混合传参的方式。但需要注意,混合传参时关键字参数必须位于所有的位置参数之后。也就是说,如下代码是错误的:
关键字参数是指使用形式参数的名字来确定输入的参数值。通过此方式指定函数实参时,不再需要与形参的位置完全一致,只要将参数名写正确即可。
因此,Python 函数的参数名应该具有更好的语义,这样程序可以立刻明确传入函数的每个参数的含义。
例如,在下面的程序中就使用到了关键字参数的形式给函数传参:def dis_str(str1,str2): print("str1:",str1) print("str2:",str2) #位置参数 dis_str("https://www.xinbaoku.com/python/","https://www.xinbaoku.com/shell/") #关键字参数 dis_str("https://www.xinbaoku.com/python/",str2="https://www.xinbaoku.com/shell/") dis_str(str2="https://www.xinbaoku.com/python/",str1="https://www.xinbaoku.com/shell/")程序执行结果为:
str1: https://www.xinbaoku.com/python/
str2: https://www.xinbaoku.com/shell/
str1: https://www.xinbaoku.com/python/
str2: https://www.xinbaoku.com/shell/
str1: https://www.xinbaoku.com/shell/
str2: https://www.xinbaoku.com/python/
当然,还可以像第 7 行代码这样,使用位置参数和关键字参数混合传参的方式。但需要注意,混合传参时关键字参数必须位于所有的位置参数之后。也就是说,如下代码是错误的:
# 位置参数必须放在关键字参数之前,下面代码错误 dis_str(str1="https://www.xinbaoku.com/python/","https://www.xinbaoku.com/shell/")Python 解释器会报如下错误:
SyntaxError: positional argument follows keyword argument
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算