回答編集履歴

1

修正

2018/03/05 05:08

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -8,21 +8,21 @@
8
8
 
9
9
  for elem in product(["a", "b", "c", "d", "e"], repeat=3):
10
10
 
11
- print(elem)
11
+ print(*elem)
12
12
 
13
13
  ```
14
14
 
15
15
 
16
16
 
17
- **実行結果** [Wandbox](https://wandbox.org/permlink/mmOxOv29bbyejo7h)
17
+ **実行結果** [Wandbox](https://wandbox.org/permlink/lPCnGc7bQ5SqYe3F)
18
18
 
19
19
  ```
20
20
 
21
- ('a', 'a', 'a')
21
+ a a a
22
22
 
23
- ('a', 'a', 'b')
23
+ a a b
24
24
 
25
- ('a', 'a', 'c')
25
+ a a c
26
26
 
27
27
 
28
28
 
@@ -30,10 +30,10 @@
30
30
 
31
31
 
32
32
 
33
- ('e', 'e', 'c')
33
+ e e c
34
34
 
35
- ('e', 'e', 'd')
35
+ e e d
36
36
 
37
- ('e', 'e', 'e')
37
+ e e e
38
38
 
39
39
  ```