I need to create several lists inside a loop.
The loop index should be in the names of
the lists.
blx="blx"
j=1
while j <= 100:
blx+j = [1,2,3,...]
j=j+1
The result I need is 100 lists:
blx1
blx2
blx3
.
.
.
blx100
Anyone have an idea about how to put a variable
name in the list names. Does not seem to work
for me, but I am just learning.
Thanks
The loop index should be in the names of
the lists.
blx="blx"
j=1
while j <= 100:
blx+j = [1,2,3,...]
j=j+1
The result I need is 100 lists:
blx1
blx2
blx3
.
.
.
blx100
Anyone have an idea about how to put a variable
name in the list names. Does not seem to work
for me, but I am just learning.
Thanks