回答編集履歴

1

質問への回答で変更

2021/01/07 09:58

投稿

ppaul
ppaul

スコア24666

test CHANGED
@@ -19,3 +19,21 @@
19
19
  count_up_reach = 0
20
20
 
21
21
  ```
22
+
23
+ 追加の変更です。以下のようにしてください。
24
+
25
+ ```python
26
+
27
+ for b_num in num:
28
+
29
+ count_up = count_up + 1
30
+
31
+ if b_num in df1.values:
32
+
33
+ count_up_bingo = 0
34
+
35
+ count_up_reach = 0
36
+
37
+ df1 = df1.replace(b_num, '{' + str(b_num) + '}')for b_num in num:
38
+
39
+ ```