首页
注册
登录
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请
登录
V2EX 提问指南
广告
V2EX
›
问与答
在 Python3 中怎么给函数中的函数传递参数?
Malvo
·
2020-01-07 11:28:00 +08:00
· 1367 次点击
这是一个创建于 1780 天前的主题,其中的信息可能已经有所发展或是发生改变。
例如:
def fun1(): fun2(a,b,c,...)
想给 fun2 传递参数,但是参数个数不确定,该怎么实现呢?
fun2
函数
参数
Python3
3 条回复
•
2020-01-07 11:39:23 +08:00
1
di94sh
2020-01-07 11:30:48 +08:00
def fun1(*args, **kwargs):
fun2(*args, **kwargs)
2
lvhuiyang
2020-01-07 11:35:03 +08:00
https://docs.python.org/3/tutorial/controlflow.html#arbitrary-argument-lists
https://docs.python.org/3/tutorial/controlflow.html#keyword-arguments
3
Malvo
OP
2020-01-07 11:39:23 +08:00
@
di94sh
@
lvhuiyang
谢谢🙏
关于
·
帮助文档
·
博客
·
API
·
FAQ
·
实用小工具
·
1909 人在线
最高记录 6679
·
Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 24ms ·
UTC 16:19
·
PVG 00:19
·
LAX 08:19
·
JFK 11:19
Developed with
CodeLauncher
♥ Do have faith in what you're doing.