print("C")
countries = response.json().get('countries_stat')
for country in countries:  # countries is a list
    if country["country_name"] == "USA":  # this filters for USA
        for key, value in country.items():  # this finds key, value pairs in country
            print(key, value)
            
            
            
            
for weather in weatherData.dict[k,v]:		
	for key, value in weatherData: 
		print(key, value)