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 слични објави

Пребарај: #trench

当前筛选 #trench清除筛选
Amazing Geography 🌍

@amazingeo · Post #298 · 26.09.2025 г., 12:31

🌍 The deepest parts of the Mariana Trench were first explored by humans in 1960, but remote vehicles have since found entire new species living over 10,900 meters below the sea surface. ✨ #exploration⚡#ocean⚡#trench⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1367 · 07.04.2026 г., 12:11

🌎 In the Mariana Trench, the deepest part of the ocean, researchers have found strange microbial life living over 10,900 meters below the surface. These microbes survive by breaking down chemicals from rocks, not sunlight, and help recycle nutrients in this harsh environment. ✨ #ocean⚡#trench⚡#microbes 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1041 · 15.11.2025 г., 18:11

🌎 Beneath the waves near Antarctica, scientists have located a deep-sea region called the South Sandwich Trench, reaching depths of about 8,266 meters. This trench is the deepest point in the Southern Ocean, and recent expeditions revealed unique amphipod species living at these extreme pressures. ✨ #ocean⚡#trench⚡#amphipods 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1132 · 15.12.2025 г., 18:11

🌎 The Mariana Trench is the deepest part of the world’s oceans, plunging nearly 11,000 meters at its Challenger Deep. Extreme pressure and cold make exploration challenging. The trench’s deepest known animal is the amphipod Hirondellea gigas, found over 10,900 meters down. ✨ #ocean⚡#mysteries⚡#depth⚡#trench 👉subscribe Interesting Planet 👉more Channels ​