0
{'2234': '1'、 '233': '60'} 次のような辞書を書きたいと思います。作成されました。 私はこれが答えたページを発見し、私は、Python 2.7でこれを試してみたが、これはまだ私のコードを実行しながら、私にエラーを与える:エラーとして私のために私は、コードを実行するとpythonでcsvファイルに辞書を書く2.7
with open('variabelen.csv', 'w') as csvfile:
writer = csv.writer(csvfile)
for name, items in a.items():
writer.writerow([name] + items)
これが現れました:
Traceback (most recent call last):
File "/Users/Danny/Desktop/Inventaris.py", line 48, in <module>
Toevoeging_methode_plus(toevoegproduct, aantaltoevoeging)
File "/Users/Danny/Desktop/Inventaris.py", line 9, in Toevoeging_methode_plus
writecolumbs()
File "/Users/Danny/Desktop/Inventaris.py", line 24, in writecolumbs
writer.writerow([name] + items)
TypeError: can only concatenate list (not "str") to list
同じ方法でこれを転置することはできますか?例えば;カラム名として233と2234を持ち、それらの名前で値を集めますか?ありがとうございました! @alecxe – Pythoner1234