题解 | #字符个数统计#
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
用 set 集合存储字符串,得到的是去重后的结果,输出该集合的个数即可
print(len(set(input())))
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
print(len(set(input())))
相关推荐