What I want to do is use my variable in creating a lists name. I'm not sure if that's possible, but if it is my goal is to have it look something like this:
i = 3
asdf = ['00','34','43','61','35','64','25']
asdf + i = [] # So in this case it would be asdf3
for each in re.findall('[0-9]+', asdf):
if each == any(re.findall('[0-9]+', asdf)[i]):
asdf + i.append(each) so #asdf3 would be appended with each
else:
i = i+3
asdf + i = [] #would create a new list: asdf6
I'm not sure if I'm just being noobish or if it's not possible and I'm going to have to go about it a different way. Help is appreciated (: