回答編集履歴

1

追記

2019/12/13 05:41

投稿

LouiS0616
LouiS0616

スコア35668

test CHANGED
@@ -17,3 +17,33 @@
17
17
  loglist2.append(l)
18
18
 
19
19
  ```
20
+
21
+
22
+
23
+ ---
24
+
25
+ ご希望の処理を実現する為には、zip関数が便利でしょう。
26
+
27
+ ```Python
28
+
29
+ loglist5 = [
30
+
31
+ list(col) for col in zip(*loglist)
32
+
33
+ ]
34
+
35
+ ```
36
+
37
+
38
+
39
+ あるいは
40
+
41
+ ```Python
42
+
43
+ loglist6 = []
44
+
45
+ for col in zip(*loglist):
46
+
47
+ loglist6.append(list(col))
48
+
49
+ ```