Notice
Recent Posts
Recent Comments
Link
투케이2K
115. (python/파이썬) [Mac Os] : [문법] : zipfile 사용해 텍스트 파일 zip 파일로 압축 수행 본문
Python
115. (python/파이썬) [Mac Os] : [문법] : zipfile 사용해 텍스트 파일 zip 파일로 압축 수행
투케이2K 2024. 5. 12. 19:23[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[사전) 설정 사항]
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
import zipfile
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. import zipfile 은 파이썬에서 여러 개의 파일을 zip 형식으로 합치거나 이를 해제할 때 사용하는 모듈입니다
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [ZipFile 사용해 파일 합치기 수행]
with zipfile.ZipFile('mytext.zip', 'w') as myzip:
myzip.write('test.txt')
myzip.write('test2.txt')
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments