Python-使用列表作为函数参数

发布于 2024-10-17 06:31:18 字数 156 浏览 4 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不知所踪 2024-10-24 06:31:18

您可以使用 splat 运算符来执行此操作:

some_func(*params)

这会使函数将每个列表项作为单独的参数接收。这里有一个描述: http://docs.python.org/tutorial/ controlflow.html#unpacking-argument-lists

You can do this using the splat operator:

some_func(*params)

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

忆离笙 2024-10-24 06:31:18

这已经得到了完美的回答,但由于我刚刚来到此页面并没有立即理解,所以我将添加一个简单但完整的示例。

def some_func(a_char, a_float, a_something):
    print a_char

params = ['a', 3.4, None]
some_func(*params)

>> a

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.

def some_func(a_char, a_float, a_something):
    print a_char

params = ['a', 3.4, None]
some_func(*params)

>> a
毁我热情 2024-10-24 06:31:18

使用星号:

some_func(*params)

Use an asterisk:

some_func(*params)
脸赞 2024-10-24 06:31:18

您需要参数解包运算符*。

You want the argument unpacking operator *.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文