如何计算字母出现在字符串中的次数?

时间:2013-04-10 13:38:52

标签: python

如何编写一个Python程序,要求用户输入字符串并计算 数 字母T(大写或小写)出现在字符串中的次数

2 个答案:

答案 0 :(得分:1)

>>> text = 'Testing'
>>> text.lower().count('t')
2

答案 1 :(得分:0)

In [4]: text = 'How do you write a Python program...'

In [5]: sum(c.lower() == 't' for c in text)
Out[5]: 2