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

Резултати

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

Пребарај: #endangered

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

@googlefactss · Post #40041 · 08.11.2025 г., 19:01

Today we present you: The takahē (Porphyrio hochstetteri) — a flightless, endemic New Zealand bird, that was once thought extinct and famously rediscovered in 1948 — has been saved from the brink of extinction by intensive conservation: captive breeding, predator control, and protected reserves. Populations have increased but the species remains threatened and needs continued protection. Around 500 birds are now known to survive. [Learn more here] Tags: #Takahē#Conservation#NZ#Endangered#LazarusSpecies

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40026 · 06.11.2025 г., 15:02

We have the honor of presenting you the Cuban solenodon (Atopogale cubana) it is a small, nocturnal mammal endemic to Cuba. Secretive and evolutionarily unique, it delivers venom through grooves in its lower incisors during a bite. Populations are fragmented and declining; the species is endangered due to habitat loss and invasive predators. Increased surveys and habitat protection are needed. [Learn more here] @googlefactss #CubanSolenodon#Endangered#Conservation#Cuba#LazarusSpecies