题解 | #字符个数统计#
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
while True:
try:
x = input()
y = list(set(x)) #对字符进行消重,并将消重后的集合转变为列表
z = len(y)
print(z)
except:
break
try:
x = input()
y = list(set(x)) #对字符进行消重,并将消重后的集合转变为列表
z = len(y)
print(z)
except:
break