/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FindWordInString/regexp.py
13 строк
243 B
gil9red
Refactoring. Using black code style
12 май 2023, 11:33
12 май 2023, 11:33
34f3c91
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" import re text = "in comparison to dogs, cats have not undergone major changes during the domestication process." words = re.findall(r"\b(\w+)\b", text) print(words)