Hi guys, this is probably a very basic question so excuse me for that.
In java you can say:
Instance instance[] = new Instance[6]
for (int i =0;i<6;i++){
instancei[i]=new Instance(...)
Or basically declare lots of instances very quickly.
In python is there an equivalent where I could write:
For i in range (0,6):
instance[i]=Instance(...)
Or something?
Thanks again.