if one had a list of strings, how could they create variables (empty list objects) with those names?
pre_vars= ['list_1','list_2','list_3']
print list_1,list_2,list_3
>>> [],[],[]
I saw some examples that were similar but they were using classes. Can this be done without using classes?