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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T01:08:36+00:00 2026-06-03T01:08:36+00:00

I expect the collection to be either a set or a dict. Problem is

  • 0

I expect the collection to be either a set or a dict. Problem is that:

for element in collection:
    print element

will give me the elements if collection is a set, but indexes if collection is a dict. What I want is a one-liner that will iterate over dict values.

Is that possible?

  • 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-03T01:08:37+00:00Added an answer on June 3, 2026 at 1:08 am

    The most foolproof way to test for a mapping is to use isinstance on collections.Mapping:

    import collections
    
    for element in (collection.values() 
                    if isinstance(collection, collections.Mapping) else collection):
    

    If you need to do that frequently (you shouldn’t, or you probably have a design issue), you could move it into a function:

    def values(collection):
        return (collection.values() 
                      if isinstance(collection, collections.Mapping) else collection)
    
    for element in values(collection):
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I expect this code will change the text only on last div (Div5), but
I expect that framework level updates (such as async) will not be able to
Please see the code below. I expect it to print either 10 because I
I want to databind an ItemsCollection, but instead of rendering the collection items, I
I have a collection of examples that I want to make sure they fail
I expect this might get some downvotes / closevotes but I'm going to ask
I expect the answer to this is already here someplace, but I was not
So I have to design a class that works on a collection of paired
I'm having a problem getting FluentNHibernate's HasMany<> mapping to behave as I would expect.
Ok, here's my simple scenario. I've got collection of strings that I'm binding to

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.