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 слични објави

Пребарај: #rarecars

当前筛选 #rarecars清除筛选
Auto Life

@revheadcrypto · Post #119 · 17.07.2024 г., 10:53

⭐️Rare Dodge Charger Daytona For Sale! 🏎️ Own a piece of automotive history with this ultra-rare 1969 Dodge Charger Daytona! Only 70 were equipped with the powerful 425-HP 7-liter V8 Hemi, and this is one of just 22 with a four-speed manual transmission. 🔧 Customized to perfection with enhanced chassis, high-performance cooling system, upgraded brakes, and complete interior amenities including power windows and six-way adjustable driver's seat. 💰Could break the current auction record price of $1.43 million. Don't miss out on this opportunity! #ChargerDaytona#RareCars#ClassicCars#Auction#Auto

Auto Life

@revheadcrypto · Post #492 · 15.09.2024 г., 15:36

🚗✨For Sale: A Rare Jaguar Duo!✨🚗 Up for auction on Pistonheads, we present a unique lot featuring two legendary Jaguars: the racing beast XJR-15 and the classic coupe XJR-S! 🏁 🌟Jaguar XJR-15🌟 - The world’s first production car with a carbon fiber body! 🏆 - Only 53 units produced from 1990 to 1992, all equipped with a powerful 6.0L V12 engine (450 hp). 🔥 - Out of those, only 27 are road-legal! This one is a pure track version with chassis number 48. 🏎️💨 - Notably, it won a support race for Formula 1 at Silverstone in 1991, driven by the legendary Juan Manuel Fangio II, with his autograph still gracing the body! ✍️🏅 #Jaguar#XJR15#XJRS#ClassicCars#CarAuction#Pistonheads#Motorsport#CarCollectors#RareCars#Auto🚘💖