import sys
data=sys.stdin.readline().strip("\n")
l=list(data)
c=set(l)
print(len(c))

通过list函数转成列表
再转成set去重
然后打印集合长度
此题目乳此简单 请赞