回答編集履歴

1

Update

2021/12/05 08:39

投稿

melian
melian

スコア20655

test CHANGED
@@ -20,7 +20,9 @@
20
20
 
21
21
  testList = np.loadtxt(io.StringIO(csv_data), delimiter=',', dtype='unicode')
22
22
 
23
+ testList = np.apply_along_axis(
24
+
23
- testList = np.apply_along_axis(lambda x: [x[0]]+list(x[1]), -1, testList)
25
+ lambda x: np.array([x[0]]+[*x[1]], dtype=object), -1, testList)
24
26
 
25
27
 
26
28
 
@@ -34,6 +36,6 @@
34
36
 
35
37
  ['dog' 'B' '1']
36
38
 
37
- ['woi' 'B' '2']]
39
+ ['woif' 'B' '2']]
38
40
 
39
41
  ```