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

Резултати

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

Пребарај: #watches

当前筛选 #watches清除筛选
Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6726 · 16.04.2020 г., 15:30

🌈Rolex collection😍 #Luxury#Watches 📷wristaficionado 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6725 · 16.04.2020 г., 15:30

🌈Rolex collection😍 #Luxury#Watches 📷wristaficionado 💁 Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6414 · 06.11.2019 г., 02:39

🌈In 😍Love with Overdrive❤️ Watches- D1 edition #Luxury#Watches 💁Via @TheLuxuryClub ✅🔜@CarLust ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6346 · 15.08.2019 г., 06:35

🌈Jacob watches worth $6,000,000 is definitely best stored in a safe 😲 #Luxury#Watches 💁Via😍Luxury Lifestyle😎 ✅🔜@RGroupOfficial ➖➖➖➖➖➖➖➖➖➖➖➖

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6320 · 18.07.2019 г., 08:08

🌈$15,000,000💰 worth Jacob Watches😍 Goals🔥💯 #Luxury#Watches 💁Via ✅🔜@RGroupOfficial ➖➖➖➖➖➖➖➖➖➖➖➖➖

Home decor

@dzdigital3 · Post #18809 · 05.08.2025 г., 14:01

POEDAGAR Luxury Military #Watch For Men Waterproof Luminous Leather Man Watch Quartz High Quality Men's Sports #Watches Male #Reloj Price 18€ Buy https://t.me/smartwatch_luxury/223

Venture Village Wall 🦄

@venturevillagewall · Post #4027 · 30.01.2025 г., 07:00

Trump Launches Crypto-Themed Watches Donald Trump has launched a line of luxury watches, including crypto-themed models featuring the Bitcoin logo. One limited edition model, adorned with gold, diamonds, and sapphires, is priced at $100,000, with only ten available. Read more about this and other updates on ForkLog. #Trump#Crypto#Watches#Bitcoin#Luxury#Fashion#LuxuryWatches#News#Updates#Launch#VIP#Investing#LimitedEdition#LuxuryLifestyle#NFT#Wealth#Collectibles#Investment#Trends#AI

Ничего особо не видел. Туман был сильный. #travel#foodie#fitness#art#music#photography#nature#fashion#beauty#motivation#quotes#books#coffee#technology#gaming#movies#design#architecture#cars#motorcycles#space#science#history#culture#streetstyle#selfcare#mindfulness#yoga#meditation#business#entrepreneur#marketing#startup#coding#ai#robotics#education#learning#languages#writing#poetry#drawing#painting#digitalart#illustration#animals#cats#dogs#wildlife#ocean#mountains#sunset#sunrise#citylife#streetphotography#minimalism#vintage#retro#luxury#watches#sneakers#streetwear#makeup#skincare#healthyfood#vegan#recipes#baking#gardening#plants#flowers#home#interior#decor#lifestyle#adventure#explore