TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #146 · 16 сеп.

Функция sub в regex может принимать функцию в качестве аргумента repl. 📄 Из документации: If repl is a function, it is called for every non-overlapping occurrence of pattern. The function takes a single match object argument, and returns the replacement string. То есть для каждого совпадения будет вызвана функция для вычисления замены вместо замены на одну и ту же строку для всех совпадений. Иными словами, для замены разных совпадений на разные строки не потребуется запускать re.sub() много раз для каждой строки замены. Достаточно определить функцию, которая вернёт строку для каждого из совпадений. Описание слишком запутанное🤔, давайте лучше рассмотрим на простом примере: Создаем карту замены. То есть какие строки на какие требуется менять. remap = { 'раз': '1', 'два': '2', 'три': '3', 'четыре': '4', 'пять': '5', } Пишем функцию поиска строки для замены. Единственным аргументом будет объект re.Match. Используя данные этого объекта мы вычисляем замену on-the-fly! def get_str(match: re.Match): word = match.group(1) return remap.get(word.lower()) or word Пример текста. text = '''Раз Два Три Четыре Пять Вместе будем мы считать Пять Четыре Три Два Раз Мы считать научим вас ''' Теперь запускаем re.sub и вместо строки замены (repl) подаём имя функции. (Данный паттерн ищет отдельные слова в тексте) >>> print(re.sub(r'(\w+)', get_str, text)) 1 2 3 4 5 Вместе будем мы считать 5 4 3 2 1 Мы считать научим вас Думаю, достаточно наглядно 🤓 #libs#regex

Hashtags

Резултати

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

Пребарај: #webdevelopment

当前筛选 #webdevelopment清除筛选
Repositorio data science

@repo_science · Post #4002 · 29.01.2024 г., 13:09

#webDevelopment 🌐 Practice It: CSS Layout Get hands-on practice with some of the most powerful CSS features. 🗣 Julia Dyck 🔰 Intermediate ⏰1h 52m ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

Repositorio data science

@repo_science · Post #3839 · 02.01.2024 г., 09:26

##webDevelopment 🌐 Next.js & React - The Complete Guide (incl. Two Paths!) Learn NextJS from the ground up and build production-ready, fullstack ReactJS apps with the NextJS framework! 🗣 Maximilian Schwarzmüller ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

Repositorio data science

@repo_science · Post #3822 · 26.12.2023 г., 21:02

#webDevelopment 🌐 Next.js & React - The Complete Guide (incl. Two Paths!) Learn NextJS from the ground up and build production-ready, fullstack ReactJS apps with the NextJS framework! 🗣 Maximilian Schwarzmüller ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

Repositorio data science

@repo_science · Post #3529 · 22.08.2023 г., 22:57

#webDevelopment 🌐 React: Creating and Hosting a Full-Stack Site Learn how to combine React, Node.js, and Amazon Web Services (AWS) in a full-stack, full-featured website. Author: Shaun Wassell Date: 2022-09-13 Duration: 4h 44m 🔗Link ----- Main channel:@repo_science Coupons: @freecoupons_reposcience -----

Repositorio data science

@repo_science · Post #3384 · 03.07.2023 г., 15:51

#webDevelopment 🥷 Más de 400 iconos SVG Gratis para añadir a tus proyectos. 🔄 Compatibles con Tailwind, React JSX y Figma 📏 Configura su tamaño entre 12px y 48px 🖌️ Configura su contorno entre 0.1 y 3 🔗flowbite.com/icons ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

Repositorio data science

@repo_science · Post #3631 · 03.10.2023 г., 03:39

#Python#webDevelopment#Book 🐍 Django 4 for the Impatient. Learn the core concepts of Python web development with Django in one weekend ✍ G. Lim, D. Correa 📆: 2022 ISBN: 9781803245836 ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

ПретходнаСтраница 1 од 5Следна