簡體   English   中英

Python - 根據代表列和行(坐標)的 position 的鍵將字典中的值寫入.csv

[英]Python - Write Values from Dictionary into .csv according to keys representing the position of column and row (coordinates)

我有一個字典,其中的鍵表示特定值的坐標(列、行):

d={(1,1) : value_1 , (1,2) : value_2 , (2,1) : value_3 , (2,2) : value_4}

csv 文件應該只包含值,但在右邊 position 由鍵(列,行)定義:

value_1 , value_3
value_2 , value_4

我希望有人能給我一個提示,我該如何處理這個?

如果您可以使用 Pandas,您可以使用鍵坐標直接將字典值添加到相應的位置,如下所示:

import pandas as pd

d = {
    (1,1): 1,
    (1,2): 2,
    (2,1): 3,
    (2,2): 4
    }

df = pd.DataFrame()
for k, v in d.items():
    df.at[k[1], k[0]] = v

df.to_csv('out.csv', index=False, header=False)

哪個將 output 以下數據表作為out.csv

1.0,3.0
2.0,4.0

看看 Python 內置的 csv 模塊:

https://docs.python.org/3/library/csv.html

您需要做的就是:

import csv

def output_csv(input_dict, output_filename):
    # translate original data dict into a list of dictionaries representing each row
    output_list = []
    for coord, value in input_dict.items():
        while coord[1] > len(output_list):
            # insert rows if the required row is not there
            output_list.append({})
        output_list[coord[1]-1][coord[0]] = value
    
    # obtain the column field names
    csv_fields = []
    for row in output_list:
        # check each row to make sure we have all the columns
        if len(csv_fields) < len(row):
            csv_fields = list(row)
    # sort the fields in order
    csv_fields.sort()
    
    # open the output file for writing
    with open(output_filename, 'w', newline='') as csvfile:
        # init the csv DictWriter
        writer = csv.DictWriter(csvfile,csv_fields, extrasaction='ignore',dialect='excel')
        # write each row
        for row in output_list:
            writer.writerow(row)

d={(1,1) : 'value_1' , (1,2) : 'value_2' , (2,1) : 'value_3' , (2,2) : 'value_4'}
d2={(1,2) : 'value_2' , (2,1) : 'value_3' , (2,2) : 'value_4'}
d3={(1,3) : 'value_1' , (1,2) : 'value_2' , (2,1) : 'value_3' , (2,2) : 'value_4'}

output_csv(d,  "output1.csv")
output_csv(d2, "output2.csv")
output_csv(d3, "output3.csv")

輸出是:

output1.csv

value_1,value_3
value_2,value_4

output2.csv

,value_3
value_2,value_4

output3.csv

,value_3
value_2,value_4
value_1,

另一種非常簡單的方法可以解決您的問題:

假設您有 testread.csv 具有以下內容:

1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5

你可以做的是:

import csv

d={(1,1) : "a" , (1,2) : "b" , (2,1) : "c" , (2,2) : "d"}

#open the file you need to modify and create a list of all rows
f = open('testread.csv', 'r')
reader = csv.reader(f)
rowlist = list(reader)
f.close()

for (k,v) in zip(d.keys(),d.values()):
    rowlist[k[0]][k[1]]= v

#open the destination file and modify it
new_list = open('testwrite.csv', 'w', newline = '')
csv_writer = csv.writer(new_list)
csv_writer.writerows(rowlist)
new_list.close()

您將獲得 testwrite.csv 的以下內容:

1,2,3,4,5
1,a,b,4,5
1,c,d,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5
1,2,3,4,5

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM