我是python的新手。我想知道如何计算从一个特定字母开始的单词数量,从文本文件中说出&#39; <&#39; 。
答案 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']