Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created June 27, 2021 00:15
Show Gist options
  • Save 100daysofdevops/9ae430a0eff407bc7eef6e4585490b79 to your computer and use it in GitHub Desktop.
Save 100daysofdevops/9ae430a0eff407bc7eef6e4585490b79 to your computer and use it in GitHub Desktop.
import csv
filename="test.csv"
with open(filename) as f:
read_csv = csv.reader(f)
for data in read_csv:
print(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment