TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #65 · 8 апр.

Небольшой трик с регулярными выражениями который редко вижу в чужом коде. Допустим, вам нужно распарсить простой текст и вытащить оттуда пары имя+телефон. Вернуть всё это надо в виде списка словарей. Возьмем очень простой пример текста. >>> text = ''' >>> Alex:8999123456 >>> Mike:+799987654 >>> Oleg:+344456789 >>> ''' Соответственно, для выделения нужных элементов будем использовать группы. Получится такой паттерн: (\w+):([\d+]+) Как мы будем формировать словарь из найденных групп? >>> import re >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append({ >>> "name": match.group(1), >>> "phone": match.group(2) >>> }) >>> print(results) [{'name': 'Alex', 'phone': '8999123456'}, ...] Можно немного сократить запись используя zip >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append(dict(zip(['name', 'phone'], match.groups()))) Но есть способ лучше! Это именованные группы в regex. Можно в паттерне указать имя группы и результат сразу забрать в виде словаря. >>> for match in re.finditer(r"(?P<name>\w+):(?P<phone>[\d+]+)", text): >>> results.append(match.groupdict()) То есть всё что я сделал, это добавил в начале группы (внутри сбокочек) такую запись: (?P<group-name>...) Теперь найденная группа имеет имя и можно обратиться к ней как к элементу списка >>> name = match['name'] Либо забрать сразу весь словарь методом groupdict() >>> match.groupdict() #tricks#regex

Резултати

Пронајдени 1 слични објави

Пребарај: #tardigrade

当前筛选 #tardigrade清除筛选
EKOLOG.UZ| ENG

@ekologuzenglish · Post #11057 · 04.01.2026 г., 01:01

Meet the Tardigrade — the creature that can survive almost anything It’s smaller than a grain of sand, lives in moss, and has even survived in outer space 🚀 This is the tardigrade, also known as the water bear — one of the toughest creatures on Earth. 🔬 What makes it so extraordinary? — survives extreme cold, close to absolute zero ❄️ — tolerates temperatures above 100 °C for short periods 🔥 — resists intense radiation — can live for years without water 💤 When conditions become harsh, the tardigrade enters a sleep-like state. It dries out, curls into a tiny “barrel,” and nearly stops all life processes. Then… 💧 one drop of water — and it comes back to life! 🌍 Tardigrades live almost everywhere: in moss, lichens, soil, fresh and salt water — even in Antarctica. 🧬 Scientists study tardigrades to understand: how to protect human cells, how life survives in extreme environments, and whether life could exist beyond Earth. 👉 Tiny and almost invisible — yet unbelievably strong. A true champion of survival 💪 #tardigrade#waterbear#amazingnature#microworld#science#ecology☘️Read the latest environmental news on the @ekologuz page. Follow us and send your suggestions and wishes via @eklguz_bot Instagram | Facebook | Twitter | Sayt | Youtube.