@starvetbooks · Post #5141 · 11.04.2025 г., 15:42
♻️#FROM ANIMAL HEALTH INSTITUTE https://t.me/starvetbooks
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
Пребарај: #from
@starvetbooks · Post #5141 · 11.04.2025 г., 15:42
♻️#FROM ANIMAL HEALTH INSTITUTE https://t.me/starvetbooks
Hashtags
@Ai_artz · Post #3477 · 28.04.2026 г., 05:53
#from Double exposure caricature of a brasilian rainforest, flowers, waterfall Heart and love: magical ethereal nature, copper patina, desaturated neutral tones on burlap, dramatic impasto composition that brakes down the boundaries between an effective combination of concept, vision and mastery of medium (Georges Braque:0.7), (Fernand Leger:0.3), set in front of vivid background by Pablo Picasso S<AI watercolor and ink, oil on canvas, reflection, mist, sunshine --ar 16:9 ✅ sapir8697 _Discord @ai_artz🎨
Hashtags
@Ai_artz · Post #3475 · 21.04.2026 г., 08:33
#from Antique suburban cybertech collage of miscellaneous ephemera mixed with rusty macabre horror rain --v 6.0 --s 400 --c 25 ✅wonnetrunken _Midjourney v6.0 @ai_artz📺
Hashtags
@AI_artz · Post #3448 · 04.03.2026 г., 14:24
#from Medieval vilage, full moon, plague doctor walking on the streets, dark night, tranquility in the style of Yves Klein, abstract ✅ hondrus _Midjourney v6.0 @ai_artz🎨
Hashtags
@AI_artz · Post #3440 · 28.02.2026 г., 09:05
#from Impressionist oil painting about meditation reflected in one person --v 6.0 ✅ juanpreisler _Midjourney v6.0 @ai_artz🎨
Hashtags
@AI_artz · Post #3428 · 21.02.2026 г., 03:07
#from A child's teddy bear plush toy which looks soft and cuddly ✅ cparsons _Discord @ai_artz🧸
Hashtags
@AI_artz · Post #3405 · 10.02.2026 г., 11:07
#from Critters gathering under the black light harvest moon, by Eric Carle --ar 4:3 ✅ dyltheshyguy _Discord @ai_artz🌠
Hashtags
@AI_artz · Post #3381 · 30.01.2026 г., 12:48
#from Orisha,blanco,pureza, --v 6.0 ✅gaiberr327 _ Midjourney v6.0 @ai_artz🌿
Hashtags
@AI_artz · Post #3379 · 28.01.2026 г., 18:11
#from Oil painting portrait from the 1500s of a smiling girl ✅ giorgiogenau_08496 _Discord @ai_artz🌿
Hashtags
@AI_artz · Post #3361 · 23.01.2026 г., 19:21
#from Handsome mongol khan age twenty, muscular but thin, proud, full body portrait, watercolor style, black and white, 8k, --ar 2:3 ✅blackbeltmonkey _Midjourney v6.0 @ai_artz🌿
Hashtags
@AI_artz · Post #3348 · 16.01.2026 г., 16:06
#from A dynamic, abstract action painting featuring a cyclist in full speed. The cyclist's body is portrayed through a vibrant blend of colors and bold brushstrokes, with a sense of motion captured through the distorted, elongated shape. The background showcases a blurry, whirlwind of colors, representing the wind and the cyclist's adrenaline-filled journey. The overall atmosphere of the painting exudes energy, speed, and the thrill of competition. ✅ Blademort1988 _Ideogram v1.0 @ai_artz🚲
Hashtags
@AI_artz · Post #3293 · 31.12.2025 г., 19:35
#from Obbatala,viejo ✅gaiberr327 _ Midjourney v6.0 @ai_artz🦜
Hashtags