If I have a set of items in a list say:
MyList = ["a", "b", "c", "c", "b"]
And I want to get the count of the total number of unique items (in this case 3)
I figure it needs to be some variant on len(myList)
but I'm not sure how to eliminate the duplicates?