I am trying to create n number of lists like
a_1 = [some data]
a_2 = [some data]
a_3 = [some data]
. .
. .
. .
. .
. .
a_n = [some data]
I thought for looping would help
for i in range(10):
a_i = []
print(a_i)
My approach is fully wrong because the output I was expecting should be like
a_1 = [some data]
a_2 = [some data]
a_3 = [some data]
. .
. .
. .
. .
. .
a_n = [some data]
instead of
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
Any help would be highly appreciated.