Question #214

Author: admin
tags: Python  
my_set = set('aha')
print(my_set) # ??
What will be printed?
{'aha'}
{'h', 'a'}
{'a', 'h', 'a'}
TypeError: unhashable type
Rate the difficulty of the question:
easyhard