你知道,要翻列表:
a = ["hello", "hello", "hi", "hi", "hey"]
进入列表:
b = ["hello", "hi", "hey"]
你只需这样做:
b = list(set(a))
这是快速和pythonic。
但是如果我需要打开这个列表怎么办:
a = [["hello", "hi"], ["hello", "hi"], ["how", "what"], ["hello", "hi"],
["how", "what"]]
到:
b = [["hello", "hi"], ["how", "what"]]
pythonic的方法是什么?