Good morning everyone.
I have a csv file with 3 columns: product, quantity and price.
I want to create 3 list, one for each column.
I try with the following code, but this create a list for each row instead of a list for each column. Any idea, please??
Thanks in advance :)
import csv
with open ("./02_CSV_data.csv","r") as myCSV:
contenido=csv.reader(myCSV)
for i in contenido:
print(i)