Given a list of strings that stores country names called cou…
Given a list of strings that stores country names called countries, write code that loops over the list of countries and prints both the index and the value to the console. countries = [‘Afghanistan’, ‘Albania’, ‘Algeria’] # example short list — assume there are ~200 countries
Read Details