题目内容:
定义函数countchar()按字母表顺序统计字符串中所有出现的字母的个数(允许输入大写字符,并且计数时不区分大小写)。形如:
def countchar(string):
... ...
return a list
if __name__ == "__main__":
string = input()
... ...
print(countchar(string))
输入格式:
字符串
输出格式:
列表
输入样例:
Hello, World!
输出样例:
[0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 3, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0]
def countChar(s):
outPut=[0 for i in range(26)]
for item in s:
if item.isalpha()!=0:
index=ord(item.lower())-97
outPut[index]+=1
return outPut
string=input()
print(countChar(string))
来源:CSDN
作者:是菓子呀
链接:https://blog.csdn.net/weixin_46430524/article/details/104873925