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

Резултати

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

Пребарај: #byob

当前筛选 #byob清除筛选
I-DLE* UPDATE (SLOW)

@gidle_update · Post #45677 · 16.09.2025 г., 11:06

250913 || JohnMaat 𝕏 UPDATE BYOB phone wallpaper selfie📸 Chef Yuqi appears just for Neverland👨‍🍳 🦒🐶 : Ta-da! I made something Neverland likes✨ 🔗Go watch BYOB Idle Yuqi episode: https://youtu.be/M8TveLXOkHg #BYOB#Idle#idle#Yuqi#YUQI –🦋 ── @GIDLE_UPDATE ──

NEA Singapore

@NEASingapore · Post #696 · 31.10.2023 г., 01:01

This Halloween, make your carbon footprint less scary! 🍿 Having a spooky movie night? Bring along reusable popcorn containers and cups. 👻 Hitting a few haunted houses? Don't forget to keep hydrated with a reusable bottle. 🍭 And if you’re thinking of hitting the sweet shops, keep a reusable bag handy. #SustainableSG#BYO#BYOB

NEA Singapore

@NEASingapore · Post #669 · 13.10.2023 г., 01:02

Bring your reusable bag when you go shopping! Every action counts when it comes to saving planet Earth, and a little goes a long way when it comes to savings 💰 Show the Earth and your wallet some love! #SayYEStoWasteLess#BYO#BYOB

NEA Singapore

@NEASingapore · Post #648 · 23.09.2023 г., 01:01

Lock screen reminders are the new sticky notes. So set a trendy reminder to bring your own reusable bag before heading out! Let’s save the planet, one bag at a time 🛍#BYO#BYOB#SayYEStoWasteLess

gov.sg

@Govsg · Post #1755 · 12.07.2023 г., 08:42

Level up your eco-game! ♻️💪 Tote-ally rockin’ a reusable bag = Saving money, slashing trash and giving our environment a healthy splash! 🌿🌏 #BYOB#ZeroWasteNation#Sustainability#SayYEStoWasteLess For more news and updates on government announcements, follow us on WhatsApp Channels at go.gov.sg/wa-channels!😊

I-DLE* UPDATE (SLOW)

@gidle_update · Post #45662 · 16.09.2025 г., 11:06

250911 || JohnMaat 𝕏 UPDATE BYOB Season 3 Final Chef👨‍🍳 ˗ˋˏ YUQI i-dle ˎˊ˗ Yuqi (in charge of all things 𝒮𝐸𝒳𝒴 ⒸⓊⓉⒺ for IDLE) Would you like to watch the BYOB Wave Show? > Gi > Ginio 🔥15 episodes will be released tomorrow at 10 AM (KST) 🔗http://youtube.com/@John_maat #BYOB#박준형#브라이언 #아이들#idle#우기#YUQI –🦋 ── @GIDLE_UPDATE ──

12
ПретходнаСтраница 1 од 2Следна