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

Резултати

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

Пребарај: #crustaceans

当前筛选 #crustaceans清除筛选
Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40853 · 24.03.2026 г., 07:02

Male and female crabs can be distinguished by looking at their abdominal flap (apron) shape, with males having a narrow, triangular (or T-shaped) apron and females possessing a broad, rounded, or U-shaped apron. Females, often called "sooks," use this wide abdomen to carry eggs, while males ("jimmies") generally have larger claws. @googlefactss#crustaceans

Hashtags

Interesting Planet 🌍

@interesting_planet_facts · Post #883 · 09.10.2025 г., 18:11

🌎 The yeti crab was discovered in 2005 near deep-sea hydrothermal vents in the South Pacific. Its pincers are covered with hair-like bristles that host bacteria, which the crab farms for food. This crab lives 2,200 meters below the surface, where sunlight never reaches. ✨ #ocean⚡#animals⚡#crustaceans 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1287 · 11.02.2026 г., 22:11

🌎 Beneath the Ross Ice Shelf in Antarctica, researchers discovered a thriving community of tiny amphipod crustaceans living over 500 meters below the ice. Scientists accessed this hidden ecosystem in 2015 by drilling through the thick ice, revealing life where sunlight never reaches. This shelf covers an area roughly the size of France. ✨ #ocean⚡#Antarctica⚡#crustaceans 👉subscribe Interesting Planet 👉more Channels ​