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

Пребарај: #dvm

当前筛选 #dvm清除筛选
Vet_opportunities

@vet_opportunities · Post #475 · 04.05.2026 г., 13:01

Oromia Agriculture Bureau Positions: (TRANSFER) #DVM: 1 #VLT: 1 Requirements: DVM: 8 years of experience VLT: 2 years of experience Deadline: 28/08/2018 Application: Submit your application to the Oromia Agriculture Bureau Human Resources Office in Addis Ababa or Borana. Don’t forget to share 🙌 👇👇 @vet_opportunities @vet_opportunities @vet_opportunities @vet_opportunities

Hashtags

VET's HUB ®

@vets_hub · Post #30111 · 02.11.2025 г., 03:45

BOOK 𝗦𝗺𝗮𝗹𝗹 𝗔𝗻𝗶𝗺𝗮𝗹 𝗜𝗻𝘁𝗲𝗿𝗻𝗮𝗹 𝗠𝗲𝗱𝗶𝗰𝗶𝗻𝗲 🩺🐈🐕 ✒️ 🔸Richard W. Nelson 🔸C. Guillermo Couto With hundreds of images, step-by-step procedures, and a practical clinical emphasis, Small Animal Internal Medicine, 6th Edition offers the foundation and tools you need to properly recognize, diagnose, and treat small animals with common internal conditions. 📚Elsevier 📖 1608 Pages - 𝗣𝗗𝗙 #internalmedicine#smallanimals#pets#dogs#cats#veterinarymedicine#dvm https://t.me/vets_hub

VET's HUB ®

@vets_hub · Post #30255 · 07.12.2025 г., 03:32

NEWS 🔻𝗪𝗲𝗶𝗴𝗵𝘁 𝗹𝗼𝘀𝘀 𝗱𝗿𝘂𝗴𝘀 𝗳𝗼𝗿 𝗰𝗮𝘁𝘀? 𝗖𝗼𝗺𝗽𝗮𝗻𝘆 𝗹𝗮𝘂𝗻𝗰𝗵𝗲𝘀 𝗰𝗹𝗶𝗻𝗶𝗰𝗮𝗹 𝘁𝗿𝗶𝗮𝗹 𝗼𝗳 𝗚𝗟𝗣-𝟭 𝗶𝗺𝗽𝗹𝗮𝗻𝘁𝘀 𝗶𝗻 𝗰𝗮𝘁𝘀 #Okava_Pharmaceuticals, a San Francisco based company, plans to introduce on Tuesday a new #GLP_1 clinical weight loss study for cats. #MEOW_1, as the study is called, will look to use #OKV_119, a miniature implant, in cats which will deliver the GLP-1, continuously for up to six months. According to #Okava, MEOW-1 is the first-ever weight loss trial using this approach on household pets. Klotsman said the goal would be to file for #FDA approval for the product between 2027 and 2028, and the target is for the product to cost owners an out-of-pocket payment of around $100 per month. Read the full story 👇 https://abcnews.go.com/GMA/Wellness/weight-loss-drugs-cats-company-launches-clinical-trial/story?id=128054236 #feline#cats#pets#petobesity#petcare#okavapharmaceuticals#sanfrancisco#vets#petowners#veterinarians#dvm