Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
import re text = "my name is vasya" end_word = re.compile(r"(vasya)$") if end_word.findall(text)[-1] == "vasya": print(end_word.findall(text)[-1])
#python input re text = "hello world" word = re.compile(r"(.*)(world)(.*)") if word.findall(txt): print(txt)