是否有一種標準方式來表示包含Python中某些關係數據的表格?我的意思是,像這樣:將表格表示爲對象
Singular Plural
1st. I make we make
2nd. you make you make
3d. he makes they make
我想數據都通過行和列由可訪問,就像這樣:
1st. Singular -> I make
1st. -> I make, we make
Plural 3d. -> they make
Plural -> we make, you make, they make
我看不到任何方式來存儲數據有效,無冗餘。我能想到的更好的方法是使用多個字典(每行一個,每列一個),每個字典都包含與字典本身相關的行或列所包含的鍵數量,以及包含所有關聯的特殊鍵值。
我猜這樣的事情已經解決了,這就是爲什麼我問。
謝謝@jamylak糾正! – 2013-04-25 10:41:03
我不知道這個「命名元組」的東西。看起來很方便。謝謝 ! – michaelmeyer 2013-04-25 10:42:40