如何在python中创建大数组,如何有效地创建它
在C/C++中:
byte *data = (byte*)memalloc(10000);
要么
byte *data = new byte[10000];
在python ...?
python
python ×1