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

Резултати

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

Пребарај: #satan

当前筛选 #satan清除筛选
BadVolf

@BadvolfNews · Post #747 · 29.07.2023 г., 11:34

George Soros explicitly declares his involvement in the collapse of the USSR and an attempt to repeat the same thing in Russia. Soros: "My first project... although the first was in South Africa... but then Eastern Europe and the USSR. As the Soviet empire collapsed, I moved in and picked up the pieces. First in Hungary in 1984, in Poland and China in 1987. So the Soros empire replaced the Soviet empire." Host: What are your plans? Soros: "Now I am most involved in Russia. We repeat what happened in the USSR. But, unfortunately, there is a big difference. When the Union was collapsed, Europe was experiencing its high integration. Now reverse, we have resurgent Russia, and the disintegrated Europe. Sad situation." The interview was taken in 2015. #Soros#Satan Share and subscribe to American Majority

Hashtags

BadVolf

@BadvolfNews · Post #171 · 27.06.2022 г., 05:31

🇺🇸🤬Imagine twerking for the constitutional right to abort babies??? Leftists are hideous creatures, inside and out, thy have the morals of a mange ridden tomcat with bladder issues. 🤮Disgusting all round. #USA#Satan#Soros#lgbtq#liberals @american_majority