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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:51:06+00:00 2026-05-16T05:51:06+00:00

I have a Dictionary of Classes where the classes hold attributes that are lists

  • 0

I have a Dictionary of Classes where the classes hold attributes that are lists of strings.

I made this function to find out the max number of items are in one of those lists for a particular person.

def find_max_var_amt(some_person) #pass in a patient id number, get back their max number of variables for a type of variable
    max_vars=0
    for key, value in patients[some_person].__dict__.items():
        challenger=len(value)
        if max_vars < challenger:
            max_vars= challenger
    return max_vars

What I want to do is rewrite it so that I do not have to use the .iteritems() function. This find_max_var_amt function works fine as is, but I am converting my code from using a dictionary to be a database using the dbm module, so typical dictionary functions will no longer work for me even though the syntax for assigning and accessing the key:value pairs will be the same. Thanks for your help!

  • 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-16T05:51:07+00:00Added an answer on May 16, 2026 at 5:51 am

    Since dbm doesn’t let you iterate over the values directly, you can iterate over the keys. To do so, you could modify your for loop to look like

    for key in patients[some_person].__dict__:
        value = patients[some_person].__dict__[key]
        # then continue as before
    

    I think a bigger issue, though, will be the fact that dbm only stores strings. So you won’t be able to store the list directly in the database; you’ll have to store a string representation of it. And that means that when you try to compute the length of the list, it won’t be as simple as len(value); you’ll have to develop some code to figure out the length of the list based on whatever string representation you use. It could just be as simple as len(the_string.split(',')), just be aware that you have to do it.

    By the way, your existing function could be rewritten using a generator, like so:

    def find_max_var_amt(some_person):
        return max(len(value) for value in patients[some_person].__dict__.itervalues())
    

    and if you did it that way, the change to iterating over keys would look like

    def find_max_var_amt(some_person):
        dct = patients[some_person].__dict__
        return max(len(dct[key]) for key in dct)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Dictionary<string, someobject> . EDIT: It was pointed out to me, that
I have a few classes that hold references to other classes through IDictionary instance
A lot of the collection classes in .Net (i.e., List<T>, Dictionary<TKey, TValue>) have an
I have a dictionary of 200,000 items (the keys are strings and the values
I have a Dictionary where I hold data for movieclips, and I want the
I have a dictionary that I normally access with a key, so I need
I have a dictionary where keys are strings, and values are integers. stats =
I have a Dictionary that when I add multiple values to it, the items
I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in
I have a Dictionary<string,int> that has the potential to contain upwards of 10+ million

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.