test = [[None for e in range(1)] for e in range(len(foobar)/2)]
for delete in range(0,len(test)):
del test[delete][0]
This is not the most pythonic way to create an empty list
would you suggest something else?
I know that this question explains it. but this is not a duplicate of the previous one as you can see.