标签: python ctypes
如何在ctypes中使用python定义多维浮点数组?
ctypes
python
可以定义的维度数量是否有限制?
答案 0 :(得分:9)
这是一个快速而肮脏的方法:
>>> A = ((ctypes.c_float * 10) * 10) >>> a = A() >>> a[5][5] 0.0