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

Пребарај: #velassaru

当前筛选 #velassaru清除筛选
Мирослава Карпович

@m1r0slavakarpovich · Post #335 · 12.07.2022 г., 15:40

New day, new chapter, new hotel, new emotions, new memories ..🤍🐚🧜🏻‍♀️ Our Mermaid adventure continue with @velassarumaldives💙 The Best Beach I’ve ever been to! #оченьрекомендую#pureshores#velassarumaldives#velassaru#maldives#vacation#travelling#каникулы#miracle#indianocean#worldwide#mermaidlife#mira#thankyou #🙏🏻 #🤍#harmony#balance #🧘🏼‍♀️

Мирослава Карпович

@m1r0slavakarpovich · Post #340 · 13.07.2022 г., 07:15

One more day with @velassarumaldives ..💙 One more day with Mother Nature .. 🧜🏻‍♀️ Total balance with my Inner and Outer Amazon .. @rodasoleil✨ ..Такими зелеными бывают деревья в ярких живописных снах. Таким синим был бы океан, если бы он мог достичь совершенства.. здесь сны видятся также ясно, как будущее в блюде мексиканских женщин, предсказывающих будущее у ночного костра… всем baajjaa veri hendhuneh ☀️ #velassarumaldives#velassaru #maldives#vacation#miracle#honeymoon#withmylilsis#thankyou #🙏🏻#moodoftheday#paradise#hooponopono #🧘🏼‍♀️#balance#privacy#harmony#traveltheworld#greengo#purenature#amazon#myroots#mira#petitefemme

Мирослава Карпович

@m1r0slavakarpovich · Post #1551 · 29.07.2024 г., 10:31

I’m back!❤️‍🔥 Luxury undressed by @velassarumaldives🧜🏻‍♀️🫶🏻 The local beach,lagoon,coral reefs and marine flora and fauna have an extraordinary beauty that cannot be expressed in words.This is one of the most amazing places you would like to visit in your life.It is the epitome of beauty with white sand and clear water.This is Mother Nature’s best masterpiece,every day she mixes all the colors of the sky and the ocean,and you can’t figure out whether the sky is eating the ocean or the ocean is eating the sky.Watching,enjoying,filling up.. #velassarumaldives#nextstop#resort#luxury#maldives#maldivesislands#vacation#vacances#sun#summer #2024 #photooftheday#moodoftheday#beachlife#sunvibes#positivevibes#purelove#heavenonearth#mira#actress#mothernature#planetearth#velassaru#magic#miracle#haveaniceday#доброеутро#отпуск#всемотличногонастроения#лето