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

Резултати

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

Пребарај: #psychologicalthriller

当前筛选 #psychologicalthriller清除筛选
movies & series 🍿

@images · Post #1926 · 15.10.2025 г., 10:58

🍿‘Send Help’: Sam Raimi Turns a Deserted Island into a Psychological Battlefield 🌴💀 📆Release: January 30, 2026 🎭Genre: #Horror · #DarkComedy · #PsychologicalThriller ✈️Follow movie Sam Raimi —the mastermind behind The Evil Dead and the original Spider-Man trilogy— returns to his wildest roots with Send Help, his first non-franchise horror film since Drag Me to Hell. Rachel McAdams (Spotlight, Mean Girls) stars as Linda, an underappreciated employee stranded on an island with her boss from hell, Bradley (Dylan O’Brien, The Maze Runner), after surviving a plane crash. What begins as a survival story quickly turns into a darkly funny, blood-soaked power struggle for dominance. What fascinates me most is how Raimi flips the hierarchy: the underdog becomes the predator 💪. Many are calling it a mix between Misery, Cast Away, and Triangle of Sadness —but with Raimi’s signature flair: grotesque, frantic, and wickedly fun. McAdams promises a full-on “Regina George in survival mode” performance, and that alone is worth the ticket. Raimi is back, and horror is groovy again.