First off, your pre contains an error that is rather important to understand:
wordChosen.lower().count['a', 'b'] #...
count是一个函数,因此它需要用
括号而不是方括号!
下一步,您应该尝试引用
文件_
第一次使用函数时。这应该有助于你理解为什么
你的方法行不通。
现在来解决你的问题。如果你想数一数
您的字符串使用“len(wordselected)”计算字符总数
在字符串中。
如果你想计算每个字母的频率,已经有一些方法了
有人建议。下面是一个使用字典的例子:
import stringLetterFreq={}for letter in string.ascii_lowercase: LetterFreq[letter] = 0for letter in wordChosen.lower(): LetterFreq[letter] += 1
This has the nice perk of defaulting all letters not present in the word to a
frequency of 0 :)
Hope this helps!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)