lst1 = [[1, 2, 3, 4], [5, 6], [7]]
lst2 = [['a', 'b', 'c', 'd'], ['e', 'f'], ['g']]
lst_tpl = [(a, b) for x, y in zip(lst1, lst2) for a, b in zip(x, y)]
print(lst_tpl)
'''
run:
[(1, 'a'), (2, 'b'), (3, 'c'), (4, 'd'), (5, 'e'), (6, 'f'), (7, 'g')]
'''