파일 내 특정 단어를 다른 단어로 치환할 때 파이썬에서는 replace 를 사용한다. def replace_in_file(file_path, old_str, new_str): # 파일 읽어들이기 fr = open(file_path, 'r') lines = fr.readlines() fr.close() # old_str -> new_str 치환 fw = open(file_path, 'w') for line in lines: fw.write(line.replace(old_str, new_str)) fw.close() # 호출: file1.txt 파일에서 comma(,) 없애기 replace_in_file("C:\\test\\file1.txt", ",", "") ** 'r'(read) 모드로 파일을 읽어들인 ..