📜  以字符串列表作为输入,我们的匹配函数返回字符串的第一个和最后一个字符相同的字符串的数量.此外,只考虑长度为 2 或更大的字符串.蟒蛇代码示例

📅  最后修改于: 2022-03-11 14:45:10.885000             🧑  作者: Mango

代码示例1
def matchWords(words):
    counter = 0
    for word in words:
        if len(word) > 1 and word[0] == word[-1]:
            counter += 1
    return counter
print(matchWords(['abc', 'xyz', 'aba', '1221']))