def read_dump_file(file_path): with open(file_path, 'rb') as file: content = file.read() # Bytes olarak içeriği string'e çevir strings = content.decode('utf-8', errors='ignore') # Hataları yok say return strings dump_file_path = 'a.dump' # Dump dosyasının yolu strings = read_dump_file(dump_file_path) print(strings)