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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:06:59+00:00 2026-06-05T05:06:59+00:00

This question is similar to Python – Find longest (most words) key in dictionary

  • 0

This question is similar to Python – Find longest (most words) key in dictionary – but I need the pure number of characters.

Example input:

d = {'group 1': 1, 'group 1000': 0}

Output:

10
  • 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-05T05:07:01+00:00Added an answer on June 5, 2026 at 5:07 am

    Alternative, which is as fast as @jamylak’s solution and more pythonic:

    from itertools import imap
    max(imap(len, d))
    

    See comparison:

    $ python -m timeit -s "d = {'group 1': 1, 'group 1000': 0}" "len(max(d,key=len))"
    1000000 loops, best of 3: 0.538 usec per loop
    
    $ python -m timeit -s "d = {'group 1': 1, 'group 1000': 0}" "max(len(x) for x in d)"
    1000000 loops, best of 3: 0.7 usec per loop
    
    $ python -m timeit -s "d = {'group 1': 1, 'group 1000': 0}; from itertools import imap" \
      "max(imap(len, d))"
    1000000 loops, best of 3: 0.557 usec per loop
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this question is similar to several previous ones, but I can't find
This question is similar to this question about subtracting dates with Python , but
This question is similar, but it pertains to static methods: In Python, how do
I'm asking a question similar to this, but with python 2.7 instead. I know
This is similar to this question , but kind of the opposite. I have
Referring on this question , I have a similar -but not the same- problem..
This question is very similar to one I recently asked: Python threading- returning control
I know similar permutations of this question have been asked before, but the answers
I have a very similar question to this question , but I am still
This question maybe asked earlier (atleast topic wise) , but still I couldn't find

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.