<pre><code>
import os
note_path='/Volumes/Kindle/documents/My Clippings.txt'
f=open(note_path,'r+')
digest_path='/Users/yangxin/Desktop/digest/'
os.mkdir(digest_path)
while True:
onenote=[]
for i in range(0,5):
line=f.readline()
if not line:
exit()
onenote.append(line)
book_note=open('%s%s.txt'%(digest_path,onenote[0]),'a+')
book_note.write(onenote[3]+'\n')
book_note.close()
</code></pre>
参考知乎回答:https://www.zhihu.com/question/23031778/answer/23484306
导出的效果如下: