题解 | #字符个数统计#
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
a = input().strip()
b = []
for i in a:
    if ord(i) >=0 and ord(i) <= 127:
        b.append(i)
    else:
        pass
c = list((dict.fromkeys(b)))
print(len(c))
 投递阿里巴巴灵犀互娱等公司10个岗位
投递阿里巴巴灵犀互娱等公司10个岗位 查看30道真题和解析
查看30道真题和解析