with open(file_path, 'r', encoding='utf-8') as file:
# 파일 경로를 지정합니다. 파일 경로는 실제 파일의 경로로 변경해야 합니다. file_path = "파일경로/파일이름.txt" try: # 파일을 읽기 모드로 엽니다. with open(file_path, 'r', encoding='utf-8') as file: # 파일 내용을 읽어옵니다. file_contents = file.read() # 파일 내용을 화면에 출력합니다. print(file_contents) except FileNotFoundError: print(f"파일을 찾을 수 없습니다: {file_path}") except Exception as e: print(f"오류가 발생했습니다: {e}") # 파일 경로를 지정합니다. 파일 경로는 실제 파일의 경로로 변경해야 합니다. file_path..
시사경제지식
2023. 8. 26. 15:22