Appearance
返回一个新列表,去除重复元素。
from usepy import uniq
lst
>>> uniq([1, 2, 2, 3, 4, 4, 5]) [1, 2, 3, 4, 5]