Created
August 16, 2023 18:20
-
-
Save nicolasdanelon/050c88ef6ca7a24cd8f48a9739774bff to your computer and use it in GitHub Desktop.
create a python dictorionary from a csv
This file contains 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
first_name | last_name | email_address | zipcode | |
---|---|---|---|---|
John | Doe | [email protected] | 12345 | |
Jane | Smith | [email protected] | 67890 | |
Alice | Johnson | [email protected] | 11223 | |
Bob | White | [email protected] | 44556 |
This file contains 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 | |
def csv_to_dict(csv_filename): | |
with open(csv_filename, mode='r') as file: | |
csv_reader = csv.DictReader(file) | |
data_list = [row for row in csv_reader] | |
return data_list | |
if __name__ == "__main__": | |
filename = "sample.csv" | |
result = csv_to_dict(filename) | |
for entry in result: | |
print(entry) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment