“Python String Find” Ответ

Python String Find

The find() method returns the index of first occurrence of the substring
(if found). If not found, it returns -1.
message = 'Python is a fun programming language'

# check the index of 'fun'
print(message.find('fun'))

# Output: 12
Motionless Manatee

Python String: .find ()

# Python string арга .find() нь аргумент болгон дамжуулсан мөрийн эхний тохиолдлын индексийг буцаана. 
# Хэрэв ямар нэгэн тохиолдол олдохгүй бол -1-ийг буцаана.

mountain_name = "Mount Kilimanjaro"
print(mountain_name.find("o")) # Prints 1 in the console.
Puzzled Porcupine

Ответы похожие на “Python String Find”

Вопросы похожие на “Python String Find”

Больше похожих ответов на “Python String Find” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования