본문 바로가기
파이썬

파이썬 목록을 피클하는 방법?

by º기록 2020. 12. 10.
반응형

나중에 액세스 할 수 있도록 문자열 만 포함 된 목록을 저장하려고합니다. 누군가 절임을 사용하라고했습니다. 나는 예를 바라고 있었다.

 

해결 방법

 

Pickling은 목록을 직렬화 (변환하고 항목을 고유 한 바이트 문자열로 변환)하므로 디스크에 저장할 수 있습니다. pickle을 사용하여 저장된 파일에서로드하여 원래 목록을 검색 할 수도 있습니다.

따라서 먼저 목록을 작성한 다음 pickle.dump 를 사용하여 파일로 보냅니다.

Python 3.4.1 (default, May 21 2014, 12:39:51) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> mylist = ['I wish to complain about this parrot what I purchased not half an hour ago from this very boutique.', "Oh yes, the, uh, the Norwegian Blue...What's,uh...What's wrong with it?", "I'll tell you what's wrong with it, my lad. 'E's dead, that's what's wrong with it!", "No, no, 'e's uh,...he's resting."]
>>> 
>>> import pickle
>>> 
>>> with open('parrot.pkl', 'wb') as f:
...   pickle.dump(mylist, f)
... 
>>> 

그런 다음 종료했다가 나중에 다시 ... pickle.load 로 엽니 다 ...

Python 3.4.1 (default, May 21 2014, 12:39:51) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle
>>> with open('parrot.pkl', 'rb') as f:
...   mynewlist = pickle.load(f)
... 
>>> mynewlist
['I wish to complain about this parrot what I purchased not half an hour ago from this very boutique.', "Oh yes, the, uh, the Norwegian Blue...What's,uh...What's wrong with it?", "I'll tell you what's wrong with it, my lad. 'E's dead, that's what's wrong with it!", "No, no, 'e's uh,...he's resting."]
>>>

 

참조 페이지 https://stackoverflow.com/questions/25464295

 

 

반응형

댓글