@QuietWorld · Post #6685 · 10.10.2019 г., 13:00
My instinct is to protect my children from pain – But adversity is often the thing that gives us character and backbone. #quotes#parenthood#family @quietworld🍃
Hashtags
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
Пребарај: #parenthood
@QuietWorld · Post #6685 · 10.10.2019 г., 13:00
My instinct is to protect my children from pain – But adversity is often the thing that gives us character and backbone. #quotes#parenthood#family @quietworld🍃
Hashtags
@QuietWorld · Post #6768 · 22.10.2019 г., 23:30
Each day of our lives we make deposits in the memory banks of our children. — Charles R. Swindoll vice versa😉 #family#parenthood#afterthoughts @quietworld🍃
Hashtags
@QuietWorld · Post #6681 · 10.10.2019 г., 04:09
The value of marriage is not that adults produce children, but that children produce adults. #marriage#family#parenthood @quietworld🍃
Hashtags
@positivenewss · Post #227 · 18.06.2020 г., 15:21
If you have already undergone infertility treatment and about to give up hopes on parenting?? Just hold on…think of Krishna IVF clinic. No tests and No scans required. Schedule an exclusive appointment with our chief doctor for “FAILURE ANALYSIS CONSULTATION” and make your parenting dreams come true. Online appointments are also available. #KrishnaIVF#Infertility#IVF#BestIVFinIndia#IVFfailure #IVFExpertreview#Parenthood