Python Program to Sort Words Alphabetically

country=['India', 'USA', 'England', 'Japan', 'Australia', 'Russia', 'Brazil', 'Germany', 'Switzerland', 'China']
country_set=sorted(set(country))
print(country_set)

Output:
Python Program to Sort Words Alphabetically