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

I basically want a python equivalent of this in C:

int a[x];

but in python I declare an array like:

a = []

and the problem is I want to assign random slots with values like:

a[4] = 1

but I can't do that with python, since the array is empty.

101
задан Jagoda Sokół 19 November 2018 в 09:21
поделиться