How do I get an empty array of any size in python?

后端 未结 8 1817
你的背包
你的背包 2020-12-04 10:57

I basically want a python equivalent of this in C:

int a[x];

but in python I declare an array like:

a = []
<
8条回答
  •  半阙折子戏
    2020-12-04 11:13

    You can use numpy:

    import numpy as np
    

    Example from Empty Array:

    np.empty([2, 2])
    array([[ -9.74499359e+001,   6.69583040e-309],
           [  2.13182611e-314,   3.06959433e-309]])  
    

提交回复
热议问题