I want to perform:
for i in list_a:
for j in list_b[i]:
print(i, j)
Is it possible to do it using itertools? I am looking for something like:
for i, j in itertools.product(list_a, list_b[i])
I want to do that for speed and readability.