回答編集履歴

1

追加の案

2021/03/30 01:28

投稿

ppaul
ppaul

スコア24670

test CHANGED
@@ -25,3 +25,35 @@
25
25
 
26
26
 
27
27
  辞書の辞書を使いましょう。
28
+
29
+
30
+
31
+ - pandasでindexとcolumnsを指定するというのも、ありかもしれません。
32
+
33
+
34
+
35
+ ```python
36
+
37
+ >>> import pandas as pd
38
+
39
+ >>>
40
+
41
+ >>> df = pd.DataFrame([[4, 5], [6, 7]], index=range(1,3), columns=range(1,3))
42
+
43
+ >>> print(df)
44
+
45
+ 1 2
46
+
47
+ 1 4 5
48
+
49
+ 2 6 7
50
+
51
+ >>> print(df.loc[1,1])
52
+
53
+ 4
54
+
55
+ >>> print(df.loc[1,2])
56
+
57
+ 5
58
+
59
+ ```