choco's story

파이썬 스터디 42 - with 키워드 본문

프로그래밍 언어 공부 (Coding Study)/파이썬 (Python) 기본

파이썬 스터디 42 - with 키워드

초코choco 2024. 9. 21. 12:56

with 키워드

긴 프로그램을 작성할 때, 프로그램 파일이 실수로 닫히는 경우를 방지해주는 키워드

기본구조

with open(문자열: 파일 경로, 문자열: 모드) as 파일 객체:
		문장

ex)

with open('with_text.txt', 'w') as file:
    file.write("Hello Python Programming...!\n")
    file.write("I'm studying Python text file coding\n")
    file.write("It is very funny\n")

텍스트 파일 생성
텍스트 파일 생성 결과