Suppose I have these two lists:
column1 = ["soft","pregnant","tall"]
column2 = ["skin","woman", "man"]
How do I loop print through these two lists while using a custom, fixed space(say 10, as in example) starting from the first letter of each element of the first list up to the first letter of each element of the second list?
Example output of a set spacing of 10:
soft skin
pregnant woman
tall man