I want to define lists at running-time using strings input by the user as their names. Example:
User input >> "Cars"
python should do >> cars[]
so later i can do >> cars.append("BMW")
Thanks.
I want to define lists at running-time using strings input by the user as their names. Example:
User input >> "Cars"
python should do >> cars[]
so later i can do >> cars.append("BMW")
Thanks.