“CSV in Python in Wörterbuch umwandeln” Code-Antworten

Python -Wörterbuch zu CSV

import csv
csv_columns = ['word','matchin']

csv_file = "found.csv"
try:
    with open(csv_file, 'w') as csvfile:
        writer = csv.DictWriter(csvfile, fieldnames=csv_columns)
        writer.writeheader()
        for data in corpus:
            writer.writerow(data)
except IOError:
    print("I/O error")
py_hacker

Wie man ein Wörterbuch in Python von CSV erstellt

input_file = csv.DictReader(open("coors.csv"))
Elegant Eel

CSV in Python in Wörterbuch umwandeln

 pythonCopyimport csv

mydict = {}

with open('csv_file.csv', mode='r') as inp:
    reader = csv.reader(inp)
    dict_from_csv = {rows[0]:rows[1] for rows in reader}

print(dict_from_csv)
Old-fashioned Oryx

Ähnliche Antworten wie “CSV in Python in Wörterbuch umwandeln”

Fragen ähnlich wie “CSV in Python in Wörterbuch umwandeln”

Weitere verwandte Antworten zu “CSV in Python in Wörterbuch umwandeln” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen