using string variable to create list variable names and get the length of each list
list1=[0,1,9,10]
list2=[2,3,11,12,13]
list3=[4,5,6,7,8]
list4=[16,17,25,26]
list5=[14,15,22,23]
nn=1
l='list'+str(nn) #the result of this concatenation is **List1**
#this should give me the length of List1
;but it gives me length of bb variable
bb=len(l)
print(bb)