Hi, Just a question: How to make a imbricated tuple as, for example: ((1,10),(2,20),(3,30)) when we don't know the size and we have only the two lists: [1,2,3] and [10,20,30] I tried with a loop (for...) but I obtain only something like that: (((1,10),(2,20)),(3,30)) Thanks