Sets, Conditions
Sets are a great way to do this, since they remove duplicates automatically:
def has_unique_chars(word):
"""Does word contains unique set of characters?"""
# START SOLUTION
unique_word = set(word)
return len(unique_word) == len(word)