I have five lists that have been extracted from an Excel table in CSV. I would like to know how I can print them in the terminal side by side, I believe it can be done with a for
loop, but I did not get the syntax.
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)