this question is based on my pervious question: Python list help (incrementing count, appending)
I am able to create the following output when I do print c;
Counter({(u'New Zealand', 174.885971, -40.900557): 1, (u'Ohio, USA', -82.90712300000001, 40.4172871): 1})
Which is exactly how I want and now I would like to know how I can write this to a csv file. Each row will represent a new location, lon/lat, count.
I want to loop through the counter and access these parts: writer.writerow(["A", "B", "C"]);
A is the location like New Zealand, B is the lat/lon, C is the count of appearance,
How can I access count's results and get those desired parts? Thanks.