[Solved] How to get rid of “\n” and ” ‘ ‘ ” in my json file
The fundamental issue is that you’re creating multiple JSON strings (json_data = (json.dumps(response, indent=2))) and then adding them to an array (json_arr.append(json_data)), and then converting that array to JSON (json.dump(json_arr,outline)). So the result is a JSON array of strings (containing JSON). You don’t want to create a string before adding to the array, just include … Read more