回答編集履歴

1

成形

2017/12/11 09:42

投稿

LouiS0616
LouiS0616

スコア35658

test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```Python
2
2
 
3
- file=open('{}.csv'.format(a), 'r')
3
+ file = open('{}.csv'.format(a), 'r')
4
4
 
5
5
  ```
6
6
 
@@ -10,6 +10,6 @@
10
10
 
11
11
  ```Python
12
12
 
13
- file=open(f'{a}.csv', 'r')
13
+ file = open(f'{a}.csv', 'r')
14
14
 
15
15
  ```