将字典里的值进行去重处理(保留前面的值),支持子字典。
dict.unique()
def test(): arr={"a":"A","b":"A","c":"C"} ret=arr.unique() print(ret)