在字符串python中计数字母

时间:2015-10-04 22:53:25

标签: python windows

(python和堆栈溢出新手)

我很好奇是否有办法计算python字符串中的字母数量。例如:

string="hello"

我只是想要对字母进行计数,然后将其输出到变量中供以后使用。

2 个答案:

答案 0 :(得分:1)

以下将给出字符串的长度:

len(string)

在您的情况下,您可以指定它:

numLetters = len(string)

此函数可用于除字符串之外的其他对象。如需其他用途,请阅读documentation

答案 1 :(得分:1)

使用python函数len,即:

size = len(string)
len()

https://docs.python.org/2/library/functions.html#len

<强>样本

https://ideone.com/mhpdLi