gpt4 book ai didi

Python元组到C数组

转载 作者:太空狗 更新时间:2023-10-29 21:55:04 25 4
gpt4 key购买 nike

我正在编写一个 C 函数,它采用 ints 的 Python tuple 作为参数。

static PyObject* lcs(PyObject* self, PyObject *args) {
int *data;
if (!PyArg_ParseTuple(args, "(iii)", &data)) {
....
}
}

我可以转换固定长度的元组(此处为 3),但如何从任意长度的 tuple 中获取 C array

import lcs
lcs.lcs((1,2,3,4,5,6)) #<- C should receive it as {1,2,3,4,5,6}

编辑

我可以传递一个由“;”分隔的数字字符串来代替元组。例如 '1;2;3;4;5;6' 并将它们分隔到 C 代码中的数组中。但我认为这不是正确的做法。

static PyObject* lcs(PyObject* self, PyObject *args) {
char *data;
if (!PyArg_ParseTuple(args, "s", &data)) {
....
}
int *idata;
//get ints from data(string) and place them in idata(array of ints)
}

编辑(解决方案)

我想我找到了解决办法:

static PyObject* lcs(PyObject* self, PyObject *args) {
PyObject *py_tuple;
int len;
int *c_array;
if (!PyArg_ParseTuple(args, "O", &py_tuple)) {
return NULL;
}
len = PyTuple_Size(py_tuple);
c_array= malloc(len*4);
while (len--) {
c_array[len] = (int) PyInt_AsLong(PyTuple_GetItem(py_tuple, len));
//c_array is our array of ints :)
}

最佳答案

使用 PyArg_VaParse:https://docs.python.org/2/c-api/arg.html#PyArg_VaParse它与 va_list 一起使用,您可以在其中检索可变数量的参数。

更多信息在这里:http://www.cplusplus.com/reference/cstdarg/va_list/

因为它是一个元组,您可以使用元组函数:https://docs.python.org/2/c-api/tuple.html像 PyTuple_Size 和 PyTuple_GetItem

这里有一个如何使用它的例子:Python extension module with variable number of arguments

如果对您有帮助,请告诉我。

关于Python元组到C数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25552315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com