当前位置:
首页 > Python基础教程 >
-
python中函数传参详解
本文给大家介绍的是Python中函数传参的使用方法及示例,非常的简单实用,有需要的小伙伴可以参考下
一、参数传入规则
可变参数允许传入0个或任意个参数,在函数调用时自动组装成一个tuple;
关键字参数允许传入0个或任意个参数,在函数调用时自动组装成一个dict;
- 传入可变参数:
def calc(*numbers):
sum = 0
for n in numbers:
sum = sum + n * n
return sum
以上定义函数,使用如下:
传入多个参数,
calc(1, 2, 3, 4)
30 #函数返回值
传入一个列表,
nums = [1, 2, 3]
calc(*nums) # 通过 * 将list中的元素作为可变参数传入函数
14 # 函数返回值
2.传入关键字参数:
>>> def person(name, age, **kw):
... print('name: ', name, 'age: ', age, 'other: ', kw)
...
>>>
>>> person('luhc', 24, city='Guangzhou')
name: luhc age: 24 other: {'city': 'Guangzhou'}
同样,可以将预先定义的dict作为参数传入以上函数:
>>> info = {'city': 'Guangzhou', 'job': 'engineer'}
>>>
>>> person('luhc', 24, **info)
name: luhc age: 24 other: {'city': 'Guangzhou', 'job': 'engineer'}
注意: 函数person 获得的是参数 info 的一份拷贝,在函数内修改不会影响 info 的值
- 在关键字参数中,可以限制关键字参数的名字:
# 通过 * 分割,以指定关键字参数名
>>> def person(name, age, *, city, job):
... print('name: ', name, 'age: ', age, 'city: ', city, 'job: ', job)
...
>>>
>>> person('luhc', 24, city='Guangzhou', job='engineer')
name: luhc age: 24 city: Guangzhou job: engineer
# 如果传入参数中,存在参数名不在定义的范围内,将抛出异常
>>> person('luhc', 24, city='Guangzhou', jobs='engineer')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: person() got an unexpected keyword argument 'jobs'
>>>
此外,如果函数中已经指定可变参数,则 * 可以省略,如下:
# 省略了用 * 作为分割,指定关键字参数名
>>> def person(name, age, *args, city, job):
... print('name: ', name, 'age: ', age, 'args: ', args, 'city: ', city, 'job: ', job)
...
>>>
>>> person('luhc', 24, 'a', 'b', city='Guangz', job='engineer')
name: luhc age: 24 args: ('a', 'b') city: Guangz job: engineer
>>>
# 同样,如果传入了关键字参数未指定的参数名,则抛出异常
>>> person('luhc', 24, 'a', 'b', city='Guangz', job='engineer', test='a')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: person() got an unexpected keyword argument 'test'
>>>
二、参数组合使用:
参数定义的顺序必须是:必选参数、默认参数、可变参数、命名关键字参数和关键字参数
def f1(a, b, c=0, *args, **kw):
print('a =', a, 'b =', b, 'c =', c, 'args =', args, 'kw =', kw)
def f2(a, b, c=0, *, d, **kw):
print('a =', a, 'b =', b, 'c =', c, 'd =', d, 'kw =', kw)
以上就是本文给大家介绍的全部内容了,希望能够对大家理解Python的函数参数的传递有所帮助
来源:https://www.jb51.net/article/87830.htm
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
开启SQLSERVER数据库缓存依赖优化网站性能
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比