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

Резултати

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

Пребарај: #islamic

当前筛选 #islamic清除筛选
TokenPocket

@tokenpocket_channel · Post #1333 · 28.04.2024 г., 08:24

🟩Stake To Earn on #TokenPocket wallet! TokenPocket now supports The_HaqqNetwork users to stake $ISLM on TokenPocket wallet, and the APR reaches 3.54%~5.06%! #HAQQ is a scalable and interoperable Ethereum, built on Proof-of-Stake with fast-finality. #Islamic Coin $ISLM is a native currency of Haqq. The staking service is powered by ColossusItaly!

Addis Standard

@addisstandardeng · Post #21593 · 03.03.2026 г., 13:59

#Ethiopia: Religious councils, OLA condemn killing of civilians in #East_Arsi, call for swift accountability The Permanent Synod of the Ethiopian #Orthodox Tewahedo Church, the #Inter-Religious Council of Ethiopia, and the Ethiopian #Islamic Affairs Supreme Council have issued separate statements condemning the killing of 21 civilians in #Shirka Woreda, East Arsi Zone of #Oromia Region, urging authorities to take immediate action to bring perpetrators to justice and strengthen protection for residents. In their respective statements, the religious institutions denounced the attack and called for swift, transparent investigations, warning against attempts to exploit the incident to incite further violence. The Oromo Liberation Army (#OLA), for its part, accused what it described as “mercenaries” of moving through Arsi Zone and deliberately targeting Orthodox Christian civilians in an effort to inflame inter-religious and inter-ethnic tensions........ Read more: https://addisstandard.com/?p=55518