次のようなリストがあります。
a = [['a string', [0, 0, 0], [22, 'bee sting']], ['see string',
[0, 2, 0], [22, 'd string']]]
保存と取得に問題があります。
pickle を使用して保存できます。
with open('afile','w') as f:
pickle.dump(a,f)
しかし、ロードしようとすると次のエラーが発生します。
pickle.load('afile')
Traceback (most recent call last):
File "<pyshell#116>", line 1, in <module>
pickle.load('afile')
File "C:\Python27\lib\pickle.py", line 1378, in load
return Unpickler(file).load()
File "C:\Python27\lib\pickle.py", line 841, in __init__
self.readline = file.readline
AttributeError: 'str' object has no attribute 'readline'
save
numpy 配列に変換して, savez
orを使用できると思っていましたsavetxt
。ただし、次のエラーが表示されます。
>>> np.array([a])
Traceback (most recent call last):
File "<pyshell#122>", line 1, in <module>
np.array([a])
ValueError: cannot set an array element with a sequence