“Python создать словарь от CSV” Ответ

Словарь Python to 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

Читать CSV и хранить в словаре 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 создать словарь от 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

Как создать словарь в Python из CSV

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

CSV в 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

Ответы похожие на “Python создать словарь от CSV”

Вопросы похожие на “Python создать словарь от CSV”

Больше похожих ответов на “Python создать словарь от CSV” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования