回答編集履歴

1

コードの変更

2020/04/23 06:18

投稿

heacet43
heacet43

スコア51

test CHANGED
@@ -8,11 +8,7 @@
8
8
 
9
9
  ```python
10
10
 
11
- df2 = pd.read_csv(LOAD_CSV_PATH, dtype="string")
12
-
13
11
  df2 = df2.replace('*', 'A', regex=True)
14
-
15
- print(df2)
16
12
 
17
13
  ```
18
14
 
@@ -30,6 +26,6 @@
30
26
 
31
27
  df2[column] = df2[column].str.replace("*", "A")
32
28
 
33
- print(df2)
29
+ display(df2)
34
30
 
35
31
  ```