i have some lists with str(numbers) for example ['8', '0', '9', '5', '7'], ['8', '0', '9', '5', '7'] need to join each element from first list with each element from second list ['88','80','89','85','87','08'...] the number of lists can be up to 100
firstly i think to use itertools.product(), but I didn't manage to implement it