python在字符串中找到子字符串的位置(字符串中子字符串的位置)

时间:2018-08-31 17:04:03

标签: python string

我想找到句子中每个'e'的位置,这样以后我就可以对它进行编码了。

sentence="joey is one of the best comedians of all time"
letter_positions=sentence.find('e')
print(letter_positions)

结果是2。

我尝试使用letter_positions=sentence.findAll('e')

但是它不起作用,出错了。

0 个答案:

没有答案