标签: python-3.x
从Python ctypes库中,我可以像这样创建一个c_floats数组:
my_array = c_float * 10
但如果我用int
my_array = int * 10
我收到错误消息。有什么不同?