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

Резултати

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

Пребарај: #personaldevelopment

当前筛选 #personaldevelopment清除筛选
Green University CA | Official

@centralasian_greenuniversity · Post #265 · 24.10.2025 г., 08:53

Girls’ Meeting at Green University! ✅On October 23, a special gathering was held for our female students, focusing on etiquette, moral values, and personal growth. 🔄The event also featured a psychological training session that helped participants build confidence and strengthen communication skills. #GreenUniversity#StudentLife#GirlsMeeting#PersonalDevelopment ✉️[email protected] ☎️ +998 55 512 00 77 📍Location 🌐Website | 📱Telegram | 📱Instagram | 📱LinkedIn | 🟥YouTube

Velvet Pages | eLibrary 🥂

@bookslibraryofficial · Post #1252 · 11.05.2025 г., 15:44

📖Title : This Too Shall Pass ✍️Author : Julia Samuel ⭐️Rating : 3.72/5 (Goodreads) 📆Published : Mar 05, 2020 ———————————————— Summary:This Too Shall Pass by Julia Samuel is a profound exploration of how humans cope with change and emotional upheaval. Drawing on her extensive experience as a psychotherapist, Samuel presents twelve moving and deeply personal case studies that cover themes such as grief, relationships, identity, and trauma. Each story reveals how people struggle with, resist, and ultimately adapt to change. Through compassionate storytelling and psychological insight, Samuel illustrates that while change is inevitable and often painful, it also offers opportunities for growth and healing. The book is a comforting, insightful guide for anyone navigating life’s unpredictable transitions and emotional challenges. ———————————————— #nonfiction#psychology#selfhelp#personaldevelopment@Bookslibraryofficial@free_novellas@the_ancient_library

Diversity & Inclusion There is a significant relationship between competitive profit gains and diversity. Companies with gender, ethnic and racial diversity are at least 15 percent more likely to experience above-average financial returns. #Wednesday#Day-3 #personalDevelopment#selfhelp#leadership#Growth#Teambuild Read 📚:- https://t.me/Think_CreativeHub

Venture Village Wall 🦄

@venturevillagewall · Post #3634 · 21.12.2024 г., 10:23

$5.4M Funding for Tenor Tenor has raised $5.40 million on December 19, 2024. This platform enables managers to rehearse difficult conversations with realistic voice AI characters and receive instant feedback for improvement. #Funding#AI#VoiceAI#Management#Feedback#Conversations#Tech#Startup#Investment#Training#Innovation#Leadership#Simulation#Dialogue#PersonalDevelopment#Business#Growth#Application#Software#Tenor

#学习#技能习得#生产力#时间管理#一万小时定律#二十小时定律#自我提升#刻意练习#个人发展#新技能#学习曲线 #Learning#SkillAcquisition#Productivity#TimeManagement#10000HourRule#20HourRule#SelfImprovement#DeliberatePractice#PersonalDevelopment#NewSkills#LearningCurve https://www.youtube.com/watch?v=5MgBikgcWnY