回答編集履歴

1

変数名変更

2020/01/02 16:46

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```python
2
2
 
3
- diffs = [a == A for a, A in zip(open('abc.txt'), open('ABC.txt'))]
3
+ diffs = [abc == ABC for abc, ABC in zip(open('abc.txt'), open('ABC.txt'))]
4
4
 
5
5
  print(diffs)
6
6