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