I would like to create lists in Python but not create each one individually by hand.
Instead, I want to create X
lists. So the number of lists depends on X
.
Is that possible for example with a while-loop? And of course, every list should have a different name.
For example: List_1
, List_2
, List_3
... List_x
Does anyone know how to do this?