A country can be said as being big if it is:
Add to the Country class so that it contains the attribute is_big. Set it to True if either criterea are met:
Also, create a method which compares a country's population density to another country object. Return a string in the following format:
{country} has a {smaller / larger} population density than {other_country}
australia = Country("Australia", 23545500, 7692024)
andorra = Country("Andorra", 76098, 468)
australia.is_big ➞ True
andorra.is_big ➞ False
andorra.compare_pd(australia) ➞ "Andorra has a larger population density than Australia"