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

Резултати

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

Пребарај: #reefs

当前筛选 #reefs清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #722 · 10.09.2025 г., 13:22

🌎 Cleaner wrasse fish set up "cleaning stations" on coral reefs where larger fish line up to have parasites removed from their skin and gills. This mutual cooperation benefits both—the wrasse get food and the client fish stay healthy. Some cleaner wrasse perform hundreds of cleaning sessions each day. ✨ #symbiosis⚡#reefs⚡#ocean 👉subscribe Interesting Planet ​

Amazing Geography 🌍

@amazingeo · Post #167 · 03.09.2025 г., 09:12

🌍 Some coral reefs can recover from bleaching by hosting heat-resistant algae. These microscopic partners boost their survival, helping reefs withstand warmer ocean temperatures. ✨ #reefs⚡#biodiversity⚡#ocean⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1356 · 29.03.2026 г., 22:11

🌎 Coral reefs are built on the partnership between coral polyps and microscopic algae called zooxanthellae. The algae live inside the coral and provide energy using photosynthesis, while corals give them shelter and nutrients. This symbiosis is vital—corals eject algae during stress, causing coral bleaching. ✨ #animals⚡#cooperation⚡#reefs 👉subscribe Interesting Planet 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #507 · 11.12.2025 г., 12:31

🌍 Some mangrove forests grow right next to coral reefs, creating a double habitat where young fish shelter in tangled roots before moving to open reef waters—a rare team-up found in only a few tropical regions. ✨ #mangroves⚡#reefs⚡#biodiversity⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #129 · 28.08.2025 г., 00:12

🌍 Coral reefs cover less than 1% of the ocean floor but support about 25% of all marine species. These vibrant ecosystems act as nurseries for countless fish and sea creatures. ✨ #coral⚡#reefs⚡#ocean⚡#biodiversity⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1089 · 01.12.2025 г., 12:11

🌎 Coral reefs provide another remarkable natural record of Earth’s past. As corals grow, they form bands in their skeletons that reflect seasonal changes in water temperature, chemistry, and even extreme weather events. Some coral cores reveal ocean conditions dating back several centuries. ✨ #coral⚡#reefs⚡#paleoclimate⚡#oceanography 👉subscribe Interesting Planet 👉more Channels ​