read csv file

PHOTO EMBED

Mon Feb 13 2023 09:11:05 GMT+0000 (Coordinated Universal Time)

Saved by @smakeri #python

read csv file

Copy
Julien Delange

Python public recipes


with open(file_name, mode ='r', encoding='utf-8') as file:
  # reading the CSV file
  csvFile = csv.DictReader(file)
  # displaying the contents of the CSV file
  for line in csvFile:
    
content_copyCOPY

https://github.com/adobeio