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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T18:05:26+00:00 2026-06-10T18:05:26+00:00

I am trying to sort a dictionary of tuples where the second item contains

  • 0

I am trying to sort a dictionary of tuples where the second item contains the dates to be sorted.
The dictionary looks something like this:

time_founded: {Soonr: 2005-5-1, SpePharm: 2006-9-1, and so on...}

Right now I am trying to sort the dates like this:

dict = sortedLists[category]    
sortedtime = sorted(dict.iteritems(),  key=lambda  d: map(int, d.split('-')))

But I am getting an error because it is trying to sort the tuples (Soonr: 2005-5-1) instead of just the date.
How can I update the sorting parameters to tell it to only look at the date on not the whole tuple?

  • 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-10T18:05:28+00:00Added an answer on June 10, 2026 at 6:05 pm

    Try this:

    sortedtime = sorted(dict.iteritems(), key=lambda d: map(int, d[1].split('-')))
    

    The only difference is the [1] which selects out the value portion of the item.

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

Sidebar

Related Questions

I'm trying to implement an fast lookup for sorted tuples in a dictionary; something
I'm trying to crate a data structure sort of like a dictionary in Python,
I'm trying to sort a dictionary by value with LINQ but I can't figure
Trying to sort this array of objects according to (1) depth and (2) weight,
Been trying to sort this one out for a while. I'd really appreciate any
I am trying to sort a two-dimensional array by a timestamp column Descending. This
I have an unsorted Dictionary<int, Dictionary<int, string>> and when trying to sort its value's
I'm trying to construct a dictionary that contains a series of sets: {Field1:{Value1, Value2,
I am trying to sort a dictionary containing lists. For example, if I have
I'm trying to make a dictionary in Python that I can sort through but

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.