Код: Выделить всё
>>> line
'hi, this is ABC oh my god!!'
>>> line.find("o")
16
>>> line.index("o")
16
Подробнее здесь: https://stackoverflow.com/questions/221 ... -and-index
Код: Выделить всё
>>> line
'hi, this is ABC oh my god!!'
>>> line.find("o")
16
>>> line.index("o")
16