使用 arg 列表调用 python callable

发布于 2024-10-02 12:52:03 字数 340 浏览 3 评论 0原文

简单的问题:如何将任意参数列表传递给 python 可调用对象?

假设我想从命令行调用一个函数,如下所示:

my_script.py foo hello world

使用以下脚本:

import myfuncs
f = getattr(myfuncs, sys.args[1])
if f and callable(f):
    # This is the bit I don't know. I effectively want f(sys.args[2:])

我确信有一种方法可以做到这一点,但我必须忽略它。

Simple question: How can I pass an arbitrary list of args to a python callable?

Let's say I want to invoke a function from the command line, like so:

my_script.py foo hello world

with the following script:

import myfuncs
f = getattr(myfuncs, sys.args[1])
if f and callable(f):
    # This is the bit I don't know. I effectively want f(sys.args[2:])

I'm sure there's a way to do this, but I must be overlooking it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

肥爪爪 2024-10-09 12:52:03

您正在寻找序列解包。即f(*sys.argv[2:])

You are looking for sequence unpacking. I.e. f(*sys.argv[2:])

捎一片雪花 2024-10-09 12:52:03

是的,请查看文档中的解压参数列表部分。

对于您的特定用途,它可能是这样的

def f(a, b, c): 
  print a, b, c

stuff = ['f',2,3,4]

f(*stuff[1:]) ### equivalent to f(2,3,4)

Yep, check out the section Unpacking argument lists in the docs.

For your particular use, it could be something like this

def f(a, b, c): 
  print a, b, c

stuff = ['f',2,3,4]

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