0
我想導入某些列在這個CSV到嵌套的Python字典:CSV嵌套的Python詞典
Name, Type, ID, Job, Height
Adam, Man, asmith, factory, 5
Ben, Man, bjones, mine, 6
Jamie, Woman, jbarnes, bank, 5.5
輸出:
dict1 = { asmith: {Name:Adam, Type:Man, Height:5},
bjones, {Name:Ben, Type:Man, Height:6},
jbarnes:, {Name:Jamie,Type:Woman, Height:5.5} }
**忘了提:如果你想忽略的第一線,你可以在文件處理程序首先調用
next(..)
頭是否在第二行,有沒有一種特定的方式來選擇列使用(有時我想排除列 - 這個前我想排除工作)** – ben