如何获取字符串中重复项的索引

时间:2016-06-01 23:35:46

标签: python string python-2.7 for-loop indexing

Python似乎无法区分同一个字母的重复项。例如:

word = "australia"
variable = "a"
for letter in word:
    if variable == letter:
        index = word.index( letter )
        print index

结果是:

0
0
0

虽然python知道单词“australia”中出现三次字母“a”,但它会一直返回第一次出现的索引。我怎样才能解决这个问题?感谢。

0 个答案:

没有答案