回答編集履歴

1

追記

2015/05/24 04:45

投稿

MAGP
MAGP

スコア153

test CHANGED
@@ -77,3 +77,29 @@
77
77
  動かない場合はエラーの内容で検索したり、
78
78
 
79
79
  変数の値、型が違っていないか確認してみるのも大切です
80
+
81
+
82
+
83
+
84
+
85
+ ----- 追記 -----
86
+
87
+ 後で気づいたのですが
88
+
89
+ ```lang-python
90
+
91
+ c_bite = bite_dict[sel_2]
92
+
93
+ if c_bite < bite_dict['B']:
94
+
95
+ ```
96
+
97
+ の箇所は別に
98
+
99
+ ```lang-python
100
+
101
+ if bite_dict[sel_2] < bite_dict['B']:
102
+
103
+ ```
104
+
105
+ でも問題無いですね。