As a way to merge two lists into an array, where each column in the array represents one of those lists.
Example:
a = ["Laranja", "Maçã", "Uva"]
b = [40, 50, 2, 45, 56]
Expected result:
x = (["Laranja", 40], ["Maça", 50], ["Uva", 2], [...
asked on
09.11.2016 / 23:27