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

Резултати

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

Пребарај: #ngc6946

当前筛选 #ngc6946清除筛选
Universe Mysteries 🪐

@cosmomyst · Post #40 · 30.07.2025 г., 08:51

🪐 The faint spiral galaxy NGC 6946, also called the "Fireworks Galaxy," has hosted ten recorded supernovae in the past century—more than any other galaxy of its size. Its dazzling history of stellar explosions illuminates clouds of gas and dust, revealing fresh bursts of star formation and the ongoing cycle of cosmic destruction and rebirth. ✨ #supernovae⚡#galaxies⚡#NGC6946 👉subscribe Universe Mysteries

Universe Mysteries 🪐

@cosmomyst · Post #147 · 17.08.2025 г., 16:11

🪐 In the galaxy NGC 6946, astronomers have identified a pair of medium-sized black holes locked in a close orbit, slowly spiraling toward each other. As they draw closer together, they send out ripples in space called gravitational waves—faint yet powerful signals that help scientists trace the invisible dance of these hidden giants across millions of light-years. ✨ #blackholes⚡#NGC6946⚡#gravitationalwaves⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries

Universe Mysteries 🪐

@cosmomyst · Post #426 · 15.10.2025 г., 12:21

🪐 In the galaxy NGC 6946, astronomers captured the supernova SN 2017eaw, a brilliant explosion marking the death of a red supergiant star about 22 million light-years away. This supernova was so bright that for a while, it outshone all the other stars in its galaxy combined, scattering newly forged elements like oxygen and silicon into space to seed future generations of stars and planets. ✨ #supernovae⚡#NGC6946⚡#cosmicexplosions⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​