“Python erstellen ein Wörterbuch von CSV” 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

Lesen Sie CSV und speichern Sie in Wörterbuch Python

import csv

with open('coors.csv', mode='r') as infile:
    reader = csv.reader(infile)
    with open('coors_new.csv', mode='w') as outfile:
        writer = csv.writer(outfile)
        mydict = {rows[0]:rows[1] for rows in reader}
Dark Duck

Python erstellen ein Wörterbuch von CSV

mydict = {y[0]: y[1] for y in [x.split(",") for x in open('file.csv').read().split('\n') if x]}
Dano's Grepper

Wie man ein Wörterbuch in Python von CSV erstellt

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

CSV zu Python Dictionary

 pythonCopyimport pandas as pd

dict_from_csv = pd.read_csv('csv_file.csv', header=None, index_col=0, squeeze=True).to_dict()
print(dict_from_csv)
Arrogant Antelope

Ähnliche Antworten wie “Python erstellen ein Wörterbuch von CSV”

Fragen ähnlich wie “Python erstellen ein Wörterbuch von CSV”

Weitere verwandte Antworten zu “Python erstellen ein Wörterbuch von CSV” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen