투케이2K

85. (python/파이썬) [Mac Os] : [File] : open 파일 열기 및 write 텍스트 파일 쓰기 수행 - write txt file 본문

Python

85. (python/파이썬) [Mac Os] : [File] : open 파일 열기 및 write 텍스트 파일 쓰기 수행 - write txt file

투케이2K 2024. 5. 6. 14:03

[개발 환경 설정]

개발 툴 : VsCode

개발 언어 : python

 

[사전) 설정 사항]

 

 

[소스 코드]

# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------


# [open : 텍스트 파일 열기 수행]
f = open("test.txt", 'w')


# [for 문을 돌면서 텍스트 파일 쓰기]
for i in range(1, 10):
    data = "%d 번째 줄 입니다 \n" % i
    
    print(data) # [로그 출력]

    f.write(data) # [파일 쓰기]


# [close 파일 닫기]
f.close()


# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
 

[결과 출력]

 

 
반응형
Comments