투케이2K

84. (python/파이썬) [Mac Os] : [File] : with open 사용해 텍스트 파일 읽기 수행 - read txt file 본문

Python

84. (python/파이썬) [Mac Os] : [File] : with open 사용해 텍스트 파일 읽기 수행 - read txt file

투케이2K 2024. 5. 6. 11:25

[개발 환경 설정]

개발 툴 : VsCode

개발 언어 : python

 

[사전) 설정 사항]

 

 

[소스 코드]

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


# [초기 텍스트 파일 읽기 결과를 담을 변수 선언]
result = ""


# [with open : 텍스트 파일 읽기 : close 종료 필요 없음]
with open("test.txt", "r") as f:
    result = f.read()


# [로그 출력]
print("")
print("----------------------------------------")
print("result :: ", result)
print("----------------------------------------")
print("")


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

[결과 출력]

 

 

반응형
Comments