I have a JSON file of Latitude/Longitude that I want to covert to a CSV file. I want to do this using Python. I have read/tried all other stackoverflow and google search results
Loop over the list one by one, and write out the field names explicitly is perhaps the simplest for this case.
for row in x: f.writerow( [row['longitude'], row['latitude']] )