I dont know what goes wrong in this piece of code?!!
I keep getting the following error.
File "<stdin>", line 11
t1.append(list[temp])
^
SyntaxError: invalid syntax
tl = []
for inlist in token_list:
temp=[]
for token in inlist:
temp.append((zlib.adler32(token,65521))
tl.append(temp)