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

Резултати

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

Пребарај: #ukresponsibility

当前筛选 #ukresponsibility清除筛选
Freedom Flotilla Coalition

@FFC_official_channel · Post #452 · 06.06.2025 г., 22:46

🚨 ACTION ALERT: The UK MUST protect ‘Madleen’ 🚨 The ‘Madleen’ is a UK-flagged civilian ship sailing to Gaza with life-saving aid as part of the #FreedomFlotilla. The UK has a legal duty to protect its vessel and the civilians aboard from Israeli interference. 🇬🇧 Under international law, the UK must: • Prevent genocide • Reject Israel’s illegal blockade of Gaza • Defend its flagged ship from unlawful attacks Support us by taking action! Contact the Foreign Office and your MP. Demand protection for the ‘Madleen’ and accountability for any aggression. Email: [email protected] X: @FCDOGovUK IG: @ForeignAndDevelopmentOffice Tel: 020 7008 5000 #SafePassage#UKResponsibility#BreakTheSiege#BreakIsraelsSiege#EndComplicity#Madleen#GazaGenocide#FreedomFlotilla

📜 Open Letter to PM Keir Starmer: Urgent Action Needed for Hong Kong’s 45 Pro-Democracy Figures Today, we, 22 UK-Hong Kong civil society organisations, express our deep frustration at the lack of action from the UK government regarding the unjust and heavy sentences of Hong Kong’s 45 pro-democracy activists. Prime Minister Starmer, as a human rights advocate, must lead by example: Demand the release of political prisoners. Impose visa restrictions on Hong Kong officials responsible for implementing the National Security Law. Apply targeted sanctions to human rights violators. The UK has a legal and moral obligation to stand firm against oppression and defend human rights and democracy. 📖 Read the full open letter here: https://shorturl.at/x4nnz #HongKong45#Democracy#HumanRights#StandWithHongKong#ukresponsibility 📜 致英國首相施紀賢的公開信:緊急關注香港45名民主人士被不義判囚 英國政府未強力譴責香港國安法庭不公重判45名民主人士,亦沒有足夠作為,我們22個在英港人組織對此深表失望。 施紀賢首相,作為人權倡導者,必須以身作則: 要求釋放所有政治犯。 對執行《國安法》的香港官員實施簽證限制。 對人權侵犯者實施針對性制裁。 英國有法律與道義責任堅守《中英聯合聲明》,抵抗壓迫,捍衛人權與民主。 📖 閱讀完整公開信:https://shorturl.at/x4nnz #香港45#民主#人權#撐香港#英國責任