6
如何訪問數組中的字典?numpy數組中的字典?
import numpy as np
x = np.array({'x': 2, 'y': 5})
我最初的想法:
x['y']
Index Error: not a valid index
x[0]
Index Error: too many indices for array
如何訪問數組中的字典?numpy數組中的字典?
import numpy as np
x = np.array({'x': 2, 'y': 5})
我最初的想法:
x['y']
Index Error: not a valid index
x[0]
Index Error: too many indices for array
如果添加方括號中數組賦值,你將有一個一維數組:
x = np.array([{'x': 2, 'y': 5}])
那麼你可以使用:
x[0]['y']
我相信它會更有意義。
如此簡單:P +1 – linusg
啊我看到完美的感謝! –