Python3.4 分别统计字符串中26个字母的个数

题目:Defineafunctionwhich,givenastringargument,countshowmanytimeseachofthe26lettersoccu... 题目:Define a function which, given a string argument, counts how many times each of the 26 letters occurs in the text. Lowercase and uppercase letters should be counted as the same letter! Your function should return a list of 26 numbers corresponding to the number of occurences of the 26 letters 'a' through 'z'.
function name: letter_frequency(s)

就是要定义一个 letter_frequency(s)
你输入字符串s
他返还一个列表 统计了在这个字符串中26个字母分别出现了几次 不区分大小写
求好心人帮忙 _(:зゝ∠)_
表示在下刚开始学 最好能解释一下每一步都是什么意思...嗯 以上!
展开
 我来答
lucifer_001
推荐于2017-09-10 · TA获得超过684个赞
知道小有建树答主
回答量:414
采纳率:0%
帮助的人:414万
展开全部
import string
def letter_frequency(s):
   s = s.lower()                      #全部转小写
   l = []
   for i in string.lowercase:
      l.append(s.count(i))            #统计个数
   return l                           #返回 

   
 运行      >>> print(letter_frequency('Asdasdad'))
 结果  [3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]
追问
你是python多少啊...
我跑出来它显示
AttributeError: 'module' object has no attribute 'lowercase'
追答
3.4不行吗,那你试试这个:

def letter_frequency(s):
   s = s.lower()                      #全部转小写
   l = []
   for i in [chr(x) for x in range(97,123)]:
      l.append(s.count(i))            #统计个数
   return l                           #返回
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式