1key = { "India", "Austria", "USA", "Pakistan", "Czech Republic"}
2value = "Country"
3countries = dict.fromkeys(key, value) # function fromkeys
4counties
5#returns {'USA': 'Country',
6 'Pakistan': 'Country',
7 'Austria': 'Country',
8 'India': 'Country',
9 'Czech Republic': 'Country'}