What i have:
a = [[1,2,3,4,5],[2,3,4,5]]
b = [["hallo"]],[["bye"]]
What I want:
new1 = [[1,2,3,4,5],"hallo"]
new2 = [[2,3,4,5],"bye"]
the hardest part is that i want it in a way that when the user puts a extra list in a and b, it will not error but automatic add the new inputs to a new list (e.g. new 3 [with a [third], [b "third"]]
I hope someone can help me!