The list that will be the name has the form:
print(my_list)
I get:
[[1, 1], [1, 2], [1, 4], [2, 1], [2, 2], [2, 4], [3, 3], [3, 5], [3, 6], [4, 1], [4, 2], [4, 4], [5, 3], [5, 5], [5, 6], [6, 3], [6, 5], [6, 6]]
I would like to create empty lists based on those pair of numbers, like:
for i in my_list:
'H'+i[0]+i[1] = []
So I would get something like this:
H11 = []
H12 = []
H14 = ...