回答編集履歴

1

ソース修正

2020/08/25 02:57

投稿

yureighost
yureighost

スコア2183

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  df = pd.read_csv('test.csv', header=None, index_col=None)
10
10
 
11
- df = df.applymap(lambda x: 0 if x % 2 == 0 else 1)
11
+ df = df.applymap(lambda x: x % 2)
12
12
 
13
13
  df.to_csv('test2.csv', header=None, index=None)
14
14