标签: python
如何编写一个Python程序,要求用户输入字符串并计算 数 字母T(大写或小写)出现在字符串中的次数
答案 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