题解 | #字符个数统计#
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
str1 = input() list1 = [] count = 0 for i in str1: if i not in list1 and ord(i) > 0 and ord(i) < 127: list1.append(i) count = count + 1 print(count)
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
str1 = input() list1 = [] count = 0 for i in str1: if i not in list1 and ord(i) > 0 and ord(i) < 127: list1.append(i) count = count + 1 print(count)
相关推荐