Python-使用列表作为函数参数
如何使用 Python 列表(例如 params = ['a',3.4,None]
)作为函数的参数,例如:
def some_func(a_char,a_float,a_something):
# do stuff
How can I use a Python list (e.g. params = ['a',3.4,None]
) as parameters to a function, e.g.:
def some_func(a_char,a_float,a_something):
# do stuff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 splat 运算符来执行此操作:
这会使函数将每个列表项作为单独的参数接收。这里有一个描述: http://docs.python.org/tutorial/ controlflow.html#unpacking-argument-lists
You can do this using the splat operator:
This causes the function to receive each list item as a separate parameter. There's a description here: http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists
这已经得到了完美的回答,但由于我刚刚来到此页面并没有立即理解,所以我将添加一个简单但完整的示例。
This has already been answered perfectly, but since I just came to this page and did not understand immediately I am just going to add a simple but complete example.
使用星号:
Use an asterisk:
您需要参数解包运算符*。
You want the argument unpacking operator *.