I have a data frame that contains a column with countries. I want to convert the country names to capital cities. Example of how the function works:
from countryinfo import CountryInfo
CountryInfo('Lebanon').capital()
Would return Beirut
How can i do this?