with open('file.json', 'r+') as file: content = file.read() file.seek(0) content.replace('string_replaced', 'new_string') file.write(content)