Consider a Python list my_list containing [\'foo\', \'foo\', \'bar\'].
my_list
[\'foo\', \'foo\', \'bar\']
What is the most Pythonic way to uniquify and sort a list ? (thi
my_list = sorted(set(my_list))