In Geopy, whenever I print the location for example
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="TTT")
location = geolocator.geocode("Washington")
print(location.raw)
I get the result like this --> Washington, District of Columbia, United States
What I want is to print the country name which means everything after the last coma
How can I do this?