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

Резултати

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

Пребарај: #transparencyinjustice

当前筛选 #transparencyinjustice清除筛选
AI & Law

@ai_and_law · Post #63 · 21.07.2023 г., 07:04

Canadian Courts Embrace Transparency: AI Usage in Court Documents to be Disclosed Hello everyone! Interesting news from Manitoba's legal scene. Chief Justice Glenn Joyal has introduced a practice direction requiring attorneys to disclose their use of artificial intelligence when preparing court documents in the Court of King's Bench. This decision comes in the wake of a recent AI-generated fake case law mishap in the U.S., prompting the need for transparency around AI's role in legal proceedings. While the practice direction acknowledges the potential future use of AI in court submissions, it also highlights concerns about the reliability and accuracy of information generated by AI systems. The move is seen as a proactive step to ensure that the legal community remains informed about the evolving role of AI in the courtroom. Experts note that the increasing use of AI in the legal profession may raise ethical dilemmas and challenges about the trustworthiness of AI-generated court documents. However, many also see AI as a valuable tool to assist lawyers in managing their workload and enhancing access to justice. By mandating AI disclosure, Manitoba's legal system is setting an example of responsible AI adoption and ensuring that AI's potential benefits are harnessed while maintaining the integrity and reliability of legal proceedings. #AIinLaw#LegalTech#TransparencyInJustice#FutureOfLaw