In this tuturial we have to learn how to check any country alternative name in python. I have mentioned in very easy way to find the any country alternative name so follow this tutorials.
1st Install Python
Read this -> Python Installation
After installation create below file
cinfo.py
pip install countryinfo
Next put below code in python file
from countryinfo import CountryInfo
country = CountryInfo('India')
data = country.alt_spellings();
print(data)
Output:-