I have for example two lists:
List1 = [1, "/", 2, "/", 3]
List2 = [11, "/", 12, 13, 14, "/", 15, 16, 17, 18]
As result I need follow combinations (delimeter is "/"):
1 11
2 12
2 13
2 14
3 15
3 16
3 17
3 18
How can I do it in python?