0
I have five lists that were extracted from an Excel table in CSV. I would like to know how I do to print them in the terminal next to each other, I believe it can be done with a loop for
, but I didn’t get the syntax right.
a = []
b = []
c = []
d = []
e = []
dataset = open ("Teste_Plotagem.csv","r")
for line in dataset:
line = line.strip()
A,B,C,D,E = line.split(";")
a.append(A)
b.append(B)
c.append(C)
d.append(D)
e.append(E)
dataset.close()
print(a)
print(b)
print(c)
print(d)
print(e)