set去重,input本身就会去除换行符,所以不需要过度处理\n, 问题不大
data = input() s = set() for i in data: s.add(i) print(len(s))