파이썬 객체를 파일로 저장하는 방법은 다음과 같다. pickle.dump를 활용할 수 있다.
import pickle
a = '123'
with open('a_22-09-26.p'), 'wb') as file:
pickle.dump(a, file)
참고: https://dojang.io/mod/page/view.php?id=2327
반응형
'CS > python' 카테고리의 다른 글
[tensorflow] tensorflow CUDA 호환성 확인하기 (0) | 2022.12.23 |
---|---|
[python] 특정 경로가 없을 때 디렉토리를 생성하는 방법 (0) | 2022.09.27 |
[jupyter notebook] 주피터 노트북 커널 추가(ipykernel) (0) | 2022.09.03 |
[docker] docker 이미지에 openslide 설치하기 (0) | 2022.08.31 |
[jupyter, ipykernel] jupyter kernel 추가가 안될 때 (0) | 2022.05.18 |