質問編集履歴

1

追記

2017/09/05 17:00

投稿

trafalbad
trafalbad

スコア303

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  次のようなリストがあります。
2
2
 
3
- listA(len(listA)=30000):[1,
3
+ listA(len(listA)=30000):```[1,
4
4
 
5
5
  1,
6
6
 
@@ -24,11 +24,11 @@
24
24
 
25
25
  1,
26
26
 
27
- 1,...]
27
+ 1,...]```
28
28
 
29
29
 
30
30
 
31
- listB(len(listA)=30000):[array([[210, 182, 158, ..., 133, 155, 167],
31
+ listB(len(listA)=30000):```[array([[210, 182, 158, ..., 133, 155, 167],
32
32
 
33
33
  [255, 243, 227, ..., 188, 183, 182],
34
34
 
@@ -40,15 +40,15 @@
40
40
 
41
41
  [194, 204, 220, ..., 28, 65, 78],
42
42
 
43
- [ 84, 117, 131, ..., 82, 117, 131]], dtype=uint8)]
43
+ [ 84, 117, 131, ..., 82, 117, 131]], dtype=uint8)]```
44
44
 
45
45
 
46
46
 
47
47
  このlenが30000のlistAとlistBの要素ごとを組み合わせて
48
48
 
49
- {1:[210, 182, 158, ..., 133, 155, 167],
49
+ ```{1:[210, 182, 158, ..., 133, 155, 167],
50
50
 
51
- 1:[255, 243, 227, ..., 188, 183, 182]....}
51
+ 1:[255, 243, 227, ..., 188, 183, 182]....}```
52
52
 
53
53
 
54
54