I am creating this topic because I would like to iterate over Objects that have nearly the same name without having to copy/paste the code a lot of times.
For instance let's say we have a "class Car " and we have : 100 instances of Car like that :
Car_1 = Car()
Car_2 = Car()
...
Car_100 = Car()
How can we iterate over these objects ? PS : In case eval() is a solution, I don't want to use that since string processing takes a long time