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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:57:45+00:00 2026-06-15T07:57:45+00:00

I am trying to sort two lists together: list1 = [1, 2, 5, 4,

  • 0

I am trying to sort two lists together:

list1 = [1, 2, 5, 4, 4, 3, 6]
list2 = [3, 2, 1, 2, 1, 7, 8]

list1, list2 = (list(x) for x in zip(*sorted(zip(list1, list2))))

Anyway, doing this gives me on output

list1 = [1, 2, 3, 4, 4, 5, 6]
list2 = [3, 2, 7, 1, 2, 1, 8]

while I would want to keep the initial order for equal number 4 in the first list: what I want is

list1 = [1, 2, 3, 4, 4, 5, 6]
list2 = [3, 2, 7, 2, 1, 1, 8]

What do I have to do? I wouldn’t want to use loop for bubble-sorting. Any help appreciated.

  • 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-15T07:57:46+00:00Added an answer on June 15, 2026 at 7:57 am

    Use a key parameter for your sort that only compares the first element of the pair. Since Python’s sort is stable, this guarantees that the order of the second elements will remain the same when the first elements are equal.

    >>> from operator import itemgetter
    >>> [list(x) for x in zip(*sorted(zip(list1, list2), key=itemgetter(0)))]
    [[1, 2, 3, 4, 4, 5, 6], [3, 2, 7, 2, 1, 1, 8]]
    

    Which is equivalent to:

    >>> [list(x) for x in zip(*sorted(zip(list1, list2), key=lambda pair: pair[0]))]
    [[1, 2, 3, 4, 4, 5, 6], [3, 2, 7, 2, 1, 1, 8]]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to sort a two-dimensional array by a timestamp column Descending. This
This post is a two-parter. I'm trying to sort a set of ip statements
i have two seperate lists list1 = [Infantry,Tanks,Jets] list2 = [ 10, 20, 30]
I was trying to implement a sort of shared cache between two or more
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 list of names followed by another string such
I'm trying to figure out what this sort of thing is called, and eventually
i´m trying to sort a list of combinations in a specific way. Consider the
I'm trying to create a function to sort a list of contacts in an

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.