Created
June 27, 2021 00:15
-
-
Save 100daysofdevops/9ae430a0eff407bc7eef6e4585490b79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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