/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
XML/lxml__xml.etree__examples/css_selector.py
13 строк
269 B
gil9red
Refactoring. Using black code style
28 июн 2023, 16:56
28 июн 2023, 16:56
5694551
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" from lxml import html root = html.fromstring("<p>Hello<br><b>world</b>!</p><br>") word = root.cssselect("b")[0] print(html.tostring(word, encoding="unicode", with_tail=False)) # <b>world</b>