Question #299571

write python programming that will do the following

  1. import data from an external csv file

Expert's answer

import csv

with open("C:\\Users\\POLAN\\Projects\\test.csv",'r') as file:
    rows=csv.reader(file,delimiter=',')
    for r in rows:
        print(r)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS