Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9154139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:22:57+00:00 2026-06-17T12:22:57+00:00

Still getting my head around python, I wonder if this function could be improved

  • 0

Still getting my head around python, I wonder if this function could be improved either in performance or readability?

def multi_replace_words(sentences, words, replace_str):
    """Replace all words in the sentences list with replace_str
    ex. multi_replace_words(['bad a list', 'og bad', 'in bady there bad2', 'another one', 'and bad. two'], ['bad','bad2']', 'EX')
    >> ['EX a list', 'og EX', 'in bady there EX','another one','and EX two']
    """
    docs = []
    for doc in sentences:
        for replace_me in words:
            if(replace_me in doc.encode('ascii', 'ignore')):
                doc = re.sub('((\A|[^A-Za-z0-9_])'+replace_me+'(\Z|[^A-Za-z0-9_]))', ' ' + replace_str+' ', doc)
        docs.append(doc)
    return docs

Thanks 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:22:58+00:00Added an answer on June 17, 2026 at 12:22 pm

    Something like this:

    In [86]: def func(lis,a,b):
        strs= "|".join("({0}{1}{2})".format(r'\b',x,r'\b[;",.]?') for x in a)
        for x in lis:
            yield re.sub(strs,b,x)
       ....:         
    
    In [87]: lis
    Out[87]: ['bad a list', 'og bad', 'in bady there bad2', 'another one', 'and bad. two']
    
    In [88]: rep=['bad','bad2']
    
    In [89]: st="EX"
    
    In [90]: list(func(lis,rep,st))
    Out[90]: ['EX a list', 'og EX', 'in bady there EX', 'another one', 'and EX two']
    
    In [91]: rep=['in','two','a']
    
    In [92]: list(func(lis,rep,st))
    Out[92]: ['bad EX list', 'og bad', 'EX bady there bad2', 'another one', 'and bad. EX']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm relatively new to testing and still getting my head around some of the
I'm having hard time getting my head wrapped around this one - and it
I'm pretty new to iPhone development and I'm still getting my head around Objective-C,
I am still getting my head around x86 assembly, and so I have made
I'm still getting my head around pointers and the like, so here goes... Each
As you guess am still a newbie, getting my head around iphone development. I
Hi still getting my head around MySQL so was hoping someone may be able
Still having a hard time getting my head wrapped around the concept of staging
I'm still getting my head around the finer points of Subversion. I have a
I am still getting my head around the import statement. If I have 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.