(파이썬) 두 파일의 내용이 같은지 비교하기
파이썬에서 두 개의 파일의 내용을 비교하는 여러 가지의 방법이 있습니다. 다음 코드는 간단하게 두 개의 파일이 같은지 비교하는 방법 중 하나입니다. def compare_files(file1_path, file2_path): with open(file1_path, 'r') as file1, open(file2_path, 'r') as file2: content1 = file1.read() content2 = file2.read() if content1 == content2: print("두 파일의 내용이 동일합니다.") else: print("두 파일의 내용이 다릅니다.") compare_files("cc1.c", "cc3.c")