@QuietWorld · Post #7387 · 11.06.2020 г., 07:56
The way you dress is an expression of your personality 🌻 Alessandro Michele #personality#quotes @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
Пребарај: #personality
@QuietWorld · Post #7387 · 11.06.2020 г., 07:56
The way you dress is an expression of your personality 🌻 Alessandro Michele #personality#quotes @quietworld🍃
Hashtags
@QuietWorld · Post #6665 · 08.10.2019 г., 08:46
“In the end, it’s your actions, how you respond to circumstance, that reveals your character.” #quotes#personality @quietworld🍃
Hashtags
@QuietWorld · Post #6827 · 31.10.2019 г., 06:30
🔖People often say that this or that person has not yet found himself. But the self is not something that one finds. It is something one creates. #personality#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #6901 · 13.11.2019 г., 01:22
http://forest-mt.seekrtech.com/ #random#personality @quietworld🍃
Hashtags
@QuietWorld · Post #6723 · 17.10.2019 г., 06:30
To have doubted one's own first principles is the mark of a civilized man. —Oliver Wendell Holmes Jr. #quotes#attitude#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7135 · 10.01.2020 г., 10:06
1 or 2? I go with 2 😉 & I love it! 😂 #random#poll#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7811 · 14.05.2021 г., 02:10
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7810 · 14.05.2021 г., 02:10
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7809 · 14.05.2021 г., 02:05
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7052 · 10.12.2019 г., 03:22
sometimes I'm surprised at how I can go back and forth from being like a mature adult around a group of people to being like a childlike adult around another particular group of people 😐 have you ever felt the same way about yourself?👀 #poll#attitude#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7271 · 20.04.2020 г., 05:12
“Parents can only give good advice or put them on the right paths, but the final forming of a person's character lies in their own hands.” 🍃 Anne Frank #life#reminder#personality#attitude @quietworld🍃
@QuietWorld · Post #6710 · 14.10.2019 г., 23:30
The better we feel about ourselves, the fewer times we have to knock somebody else down to feel tall. #quotes#life#people#personality @quietworld🍃
Hashtags