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 8836591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:31:53+00:00 2026-06-14T09:31:53+00:00

I have a list (l) of dictionaries {id: id, class: class, parameter: parameter} .

  • 0

I have a list (l) of dictionaries {"id": id, "class": class, "parameter": parameter}. I have to do this,

for each value of class:
    parameter = getParameter(class) //we can get different parameter for same class
    if {"class":class, "parameter":parameter} not in l:
         increment id and do l.append({"id": id, "class": class, "parameter": parameter})

Here dict in list has 3 keys, where as i have to search in list with 2 keys. How can i validate ‘if’ condition?

  • 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-14T09:31:54+00:00Added an answer on June 14, 2026 at 9:31 am

    If I understand correctly your problem is deciding if there is already an entry with the given values for class and parameter? You will have to write an expression that searches the list for you, like this:

    def search_list(thedict, thelist):
        return any(x["class"] == thedict["class"]
                   and x["parameter"] == thedict["parameter"]
                   for x in thelist)
    

    The function returns True if an entry is found. Call it like this:

    if not search_list({"class": class, "parameter": parameter}, l):
        #the item was not found - do stuff
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of dictionaries that I get back from a web service
def sortProfiles(p): return sorted(p, key=itemgetter('first_name')) I have a list with dictionaries. This function allows
I have a list which contains dictionaries. Each dictionary has an attribute description which
I have a list of dictionaries that have the same keys within eg: [{k1:'foo',
I have a list of dictionaries like in this example: listofdict = [{'name': 'Foo',
I have a list of dictionaries. Is it possible to get the dictionary or
I have this list of dictionaries: cust = [ {id: 1, name: uname 1,
I have a list of dictionaries. Each dictionary has certain boolean flags. So, the
I have a list of dictionaries containing unicode strings. csv.DictWriter can write a list
I have list of dictionaries like this: [{'X': '10'}, {'time': '08:34:51', 'load': 28.27, 'memory':

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.