回答編集履歴

2

編集

2017/10/25 08:32

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -20,10 +20,10 @@
20
20
 
21
21
 
22
22
 
23
- >>> tmp_day3 = '/otherdir/day_list.csv'
23
+ >>> tmp_day3 = '/otherdir/ day + _list.csv'
24
24
 
25
25
  >>> print(tmp_day3)
26
26
 
27
- /otherdir/day_list.csv
27
+ /otherdir/ day + _list.csv
28
28
 
29
29
  ```

1

編集

2017/10/25 08:32

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  ```Python
6
6
 
7
- >>> tmp_str = '/otherdir/{}_list.csv'.format(day)
7
+ >>> tmp_day1 = '/otherdir/{}_list.csv'.format(day)
8
8
 
9
- >>> print(tmp_str)
9
+ >>> print(tmp_day1)
10
10
 
11
11
  /otherdir/20171025_list.csv
12
12
 
@@ -18,4 +18,12 @@
18
18
 
19
19
  /otherdir/20171025_list.csv
20
20
 
21
+
22
+
23
+ >>> tmp_day3 = '/otherdir/day_list.csv'
24
+
25
+ >>> print(tmp_day3)
26
+
27
+ /otherdir/day_list.csv
28
+
21
29
  ```