Python:计算以' L'开头的给定文件中的单词

时间:2016-09-18 03:24:04

标签: list

我是python的新手。我想知道如何计算从一个特定字母开始的单词数量,从文本文件中说出&#39; <&#39;

1 个答案:

答案 0 :(得分:1)

str.startswith(prefix[, start[, end]])

给它一个镜头,但导入你的文件还有其他一些方法。

list = ["apple", "bannana", "custard", "shoe", "ant", "police", "python"]
newList = []

for word in list:
    if word.startswith('a'):
        newList.append(word)

print newList
['apple', 'ant']