将列表里的值进行去重处理(保留前面的值),支持子列表。
list.unique()
def test(): arr=["a","a","b","b",["c","c"]] print(arr.unique())