Answer to Question #299571 in Python for joy

Question #299571

write python programming that will do the following

  1. import data from an external csv file
1
Expert's answer
2022-02-19T06:22:10-0500
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS