回答編集履歴

1

修正

2018/06/12 19:51

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -1,6 +1,4 @@
1
- 区切り文字としてタブを利用されてはいかがですか。
1
+ タブを利用されてはいかがですか。
2
-
3
- 例えばこんな感じで。
4
2
 
5
3
  ```Python
6
4
 
@@ -8,10 +6,14 @@
8
6
 
9
7
  for row in lst:
10
8
 
9
+ for elem in row:
10
+
11
- print(*row, sep='\t')
11
+ print(elem, end='\t')
12
+
13
+ print()
12
14
 
13
15
  ```
14
16
 
15
17
 
16
18
 
17
- **実行結果** [Wandbox](https://wandbox.org/permlink/UQDHDnMxe8fESgRU)
19
+ 実行結果 [Wandbox](https://wandbox.org/permlink/q4FEj99eFQmryIFA)