python传递多个参数时各参数由什么分隔_在Python中向C函数传递多个参数

假设我有一个c库,它以某种方式操纵着一个世界。在

我想在python中使用这个库。我希望能够编写简单的python脚本来表示世界管理的不同场景。在

我有创造和毁灭世界的功能:

void*创建(void);

int摧毁(虚空*世界)

下面是一些python代码:import ctypes

lib = ctypes.CDLL('manage_world.so')

_create = lib.create

_create.restype = ctypes.c_void_p

_destroy = lib.destroy

_destroy.argtypes = [ctypes.c_void_p,]

_destroy.restype = ctypes.c_int

def create_world():

res = _create()

res = ctypes.cast(res, ctypes.c_void_p)

return res

def destroy_world(world):

return _destroy(world)

new_world = create_world()

print type(new_world)

print destroy_world(new_world)

现在我想添加一些函数,比如:

int set_world_feature(void*world,feature_t f…);

int get_world_feature(void*world,feature t f…)

问题是,在python包装器中,我不知道如何传递不同的多个参数。在

因为有时set_world_feature()是用3个或4个参数调用的。在

在Python中:

^{pr2}$

如何解决这个问题才能让它正常工作?在

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值