I have a dictionary like this: d = {"name": "john", "surname": "smith", "nickname: "john"}
I want to get all unique values, i.e: ["john", "smith"]
I have see this question which does the same a for list of dictionaries, and I have seen this question which uses values()
but it does not return the unique list of values.