(python和堆栈溢出新手)
我很好奇是否有办法计算python字符串中的字母数量。例如:
string="hello"
我只是想要对字母进行计数,然后将其输出到变量中供以后使用。
答案 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
<强>样本强>