# 遍历字符串并计数 input_string = input() input_list = [i for i in input_string] unique = [] for i in input_list: if i not in unique: unique.appe...