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

  • Home
  • SEARCH
  • 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 3394002
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:07:05+00:00 2026-05-18T04:07:05+00:00

I have a dictionary that has a place name as a key and as

  • 0

I have a dictionary that has a place name as a key and as the value it has several lists of words, eg, 1 entry looks like:

{'myPlaceName': [u'silly', u'i', u'wish!', u'lol', [u'the', u'lotto'], [, u'me', u'a', u'baby?'], [u'new', u'have', u'new', u'silly', u'new', u'today,', u'cant', u'tell', u'yet,', u'but', u'all', u'guesses', u'silly']]}

How can I join them all so I can get the common words associated with each place?
I would like my output to get silly and new as the common words for the dictionary.

  • 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-05-18T04:07:05+00:00Added an answer on May 18, 2026 at 4:07 am

    This function takes a list of a list of words, and returns all words that are found in all the lists.
    eg get_common_words([['hi', 'hello'], ['bye', 'hi']]) returns ['hi']

    def get_common_words(places):
        common_words = []
        for word in places[0]:
            is_common = all(word in place for place in places[1:]) #check to see that this word is in all places
            if is_common:
                common_words.append(word)
        return common_words
    

    or the giant one-liner:

    get_common_words = lambda places: [word for word in places[0] if all(word in place for place in places[1:])]
    

    or just go with one of the methods suggested in the comments of this answer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a big dictionary object that has several key value pairs (about 16),
I have a dictionary (see below) that has Key strings and Value strings and
i have one dictionary that has entries that looks like this: dictionary[ABC.123] = Test
Currently, I have a dictionary that has a number as the key and a
I have a Dictionary that has a signature: Dictionary<int, List<string>> . I'd like to
I have a Dictionary<string,int> that has the potential to contain upwards of 10+ million
I have a dictionary that I normally access with a key, so I need
I'm newish to Python (and stackoverflow)...bear with me! I have a dictionary that looks
I have a Dictionary object that is formed using a double as its key.
I have a dictionary .plist that has a subarray in it, however during the

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.