Exercise 1 Define the Country class which has attributes for name, capital, population, and continent. Please use the Python convention for making these attributes private. Expected Output Initialize an object of the Country class as follows: my_country = Country('France', 'Paris', 67081000, 'Europe')