Python sorting 2D array by the first element (not unique)










0















I have a very big 2D array where the second elements are not unique. Something like this:



list = [ ['text43','value43'], 
['text23','value23'],
['text12','value12'],
['text43','different_val_43'],
['text12','another_value12'],
['text04','value04'],
['text43','anohter_value43'] ]


I would like to sort it by the first element but not in alphabetical order, just in the order of appearance of first element. Desired output:



list = [ ['text43','value43'],
['text43','different_val_43'],
['text43','anohter_value43'],
['text23','value23'],
['text12','value12'],
['text12','another_value12'],
['text04','value04'] ]









share|improve this question

















  • 2





    sorted(list1, key=lambda x: -int(x[0][-2:])) ?

    – Bear Brown
    Nov 13 '18 at 13:07











  • Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

    – gkapellmann
    Nov 13 '18 at 13:09






  • 3





    Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

    – Charles Landau
    Nov 13 '18 at 13:11











  • Thanks @CharlesLandau ...actually was just an example, I have not named it list.

    – Birbal
    Nov 13 '18 at 13:51















0















I have a very big 2D array where the second elements are not unique. Something like this:



list = [ ['text43','value43'], 
['text23','value23'],
['text12','value12'],
['text43','different_val_43'],
['text12','another_value12'],
['text04','value04'],
['text43','anohter_value43'] ]


I would like to sort it by the first element but not in alphabetical order, just in the order of appearance of first element. Desired output:



list = [ ['text43','value43'],
['text43','different_val_43'],
['text43','anohter_value43'],
['text23','value23'],
['text12','value12'],
['text12','another_value12'],
['text04','value04'] ]









share|improve this question

















  • 2





    sorted(list1, key=lambda x: -int(x[0][-2:])) ?

    – Bear Brown
    Nov 13 '18 at 13:07











  • Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

    – gkapellmann
    Nov 13 '18 at 13:09






  • 3





    Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

    – Charles Landau
    Nov 13 '18 at 13:11











  • Thanks @CharlesLandau ...actually was just an example, I have not named it list.

    – Birbal
    Nov 13 '18 at 13:51













0












0








0








I have a very big 2D array where the second elements are not unique. Something like this:



list = [ ['text43','value43'], 
['text23','value23'],
['text12','value12'],
['text43','different_val_43'],
['text12','another_value12'],
['text04','value04'],
['text43','anohter_value43'] ]


I would like to sort it by the first element but not in alphabetical order, just in the order of appearance of first element. Desired output:



list = [ ['text43','value43'],
['text43','different_val_43'],
['text43','anohter_value43'],
['text23','value23'],
['text12','value12'],
['text12','another_value12'],
['text04','value04'] ]









share|improve this question














I have a very big 2D array where the second elements are not unique. Something like this:



list = [ ['text43','value43'], 
['text23','value23'],
['text12','value12'],
['text43','different_val_43'],
['text12','another_value12'],
['text04','value04'],
['text43','anohter_value43'] ]


I would like to sort it by the first element but not in alphabetical order, just in the order of appearance of first element. Desired output:



list = [ ['text43','value43'],
['text43','different_val_43'],
['text43','anohter_value43'],
['text23','value23'],
['text12','value12'],
['text12','another_value12'],
['text04','value04'] ]






python arrays list sorting






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 13 '18 at 13:02









BirbalBirbal

587




587







  • 2





    sorted(list1, key=lambda x: -int(x[0][-2:])) ?

    – Bear Brown
    Nov 13 '18 at 13:07











  • Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

    – gkapellmann
    Nov 13 '18 at 13:09






  • 3





    Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

    – Charles Landau
    Nov 13 '18 at 13:11











  • Thanks @CharlesLandau ...actually was just an example, I have not named it list.

    – Birbal
    Nov 13 '18 at 13:51












  • 2





    sorted(list1, key=lambda x: -int(x[0][-2:])) ?

    – Bear Brown
    Nov 13 '18 at 13:07











  • Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

    – gkapellmann
    Nov 13 '18 at 13:09






  • 3





    Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

    – Charles Landau
    Nov 13 '18 at 13:11











  • Thanks @CharlesLandau ...actually was just an example, I have not named it list.

    – Birbal
    Nov 13 '18 at 13:51







2




2





sorted(list1, key=lambda x: -int(x[0][-2:])) ?

– Bear Brown
Nov 13 '18 at 13:07





sorted(list1, key=lambda x: -int(x[0][-2:])) ?

– Bear Brown
Nov 13 '18 at 13:07













Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

– gkapellmann
Nov 13 '18 at 13:09





Hello @Birbal, you'll need to add some code that you have already tried to make work. Have you tried anything?

– gkapellmann
Nov 13 '18 at 13:09




3




3





Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

– Charles Landau
Nov 13 '18 at 13:11





Do not use list as the variable name of a python list. @BearBrown 's answer looks right.

– Charles Landau
Nov 13 '18 at 13:11













Thanks @CharlesLandau ...actually was just an example, I have not named it list.

– Birbal
Nov 13 '18 at 13:51





Thanks @CharlesLandau ...actually was just an example, I have not named it list.

– Birbal
Nov 13 '18 at 13:51












2 Answers
2






active

oldest

votes


















3














You can use a custom sorting function that would return the index at which the first element of a sublist is first found, e.g.:



lst = [['text43','value43'],
['text23','value23'],
['text12','value12'],
['text43','different_val_43'],
['text12','another_value12'],
['text04','value04'],
['text43','anohter_value43']]

d =
for i, item in enumerate(lst):
if item[0] not in d:
d[item[0]] = i

lst.sort(key=lambda item: d[item[0]])
print(lst)


Output:



[['text43', 'value43'],
['text43', 'different_val_43'],
['text43', 'anohter_value43'],
['text23', 'value23'],
['text12', 'value12'],
['text12', 'another_value12'],
['text04', 'value04']]





share|improve this answer
































    0














    Look if this helps. Using sorted()



    lst = [ ['text43','value43'], 
    ['text23','value23'],
    ['text12','value12'],
    ['text43','different_val_43'],
    ['text12','another_value12'],
    ['text04','value04'],
    ['text43','anohter_value43'] ]

    sorted(lst, reverse=True)


    Output:



    [['text43', 'value43'],
    ['text43', 'different_val_43'],
    ['text43', 'anohter_value43'],
    ['text23', 'value23'],
    ['text12', 'value12'],
    ['text12', 'another_value12'],
    ['text04', 'value04']]





    share|improve this answer
























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53281603%2fpython-sorting-2d-array-by-the-first-element-not-unique%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      3














      You can use a custom sorting function that would return the index at which the first element of a sublist is first found, e.g.:



      lst = [['text43','value43'],
      ['text23','value23'],
      ['text12','value12'],
      ['text43','different_val_43'],
      ['text12','another_value12'],
      ['text04','value04'],
      ['text43','anohter_value43']]

      d =
      for i, item in enumerate(lst):
      if item[0] not in d:
      d[item[0]] = i

      lst.sort(key=lambda item: d[item[0]])
      print(lst)


      Output:



      [['text43', 'value43'],
      ['text43', 'different_val_43'],
      ['text43', 'anohter_value43'],
      ['text23', 'value23'],
      ['text12', 'value12'],
      ['text12', 'another_value12'],
      ['text04', 'value04']]





      share|improve this answer





























        3














        You can use a custom sorting function that would return the index at which the first element of a sublist is first found, e.g.:



        lst = [['text43','value43'],
        ['text23','value23'],
        ['text12','value12'],
        ['text43','different_val_43'],
        ['text12','another_value12'],
        ['text04','value04'],
        ['text43','anohter_value43']]

        d =
        for i, item in enumerate(lst):
        if item[0] not in d:
        d[item[0]] = i

        lst.sort(key=lambda item: d[item[0]])
        print(lst)


        Output:



        [['text43', 'value43'],
        ['text43', 'different_val_43'],
        ['text43', 'anohter_value43'],
        ['text23', 'value23'],
        ['text12', 'value12'],
        ['text12', 'another_value12'],
        ['text04', 'value04']]





        share|improve this answer



























          3












          3








          3







          You can use a custom sorting function that would return the index at which the first element of a sublist is first found, e.g.:



          lst = [['text43','value43'],
          ['text23','value23'],
          ['text12','value12'],
          ['text43','different_val_43'],
          ['text12','another_value12'],
          ['text04','value04'],
          ['text43','anohter_value43']]

          d =
          for i, item in enumerate(lst):
          if item[0] not in d:
          d[item[0]] = i

          lst.sort(key=lambda item: d[item[0]])
          print(lst)


          Output:



          [['text43', 'value43'],
          ['text43', 'different_val_43'],
          ['text43', 'anohter_value43'],
          ['text23', 'value23'],
          ['text12', 'value12'],
          ['text12', 'another_value12'],
          ['text04', 'value04']]





          share|improve this answer















          You can use a custom sorting function that would return the index at which the first element of a sublist is first found, e.g.:



          lst = [['text43','value43'],
          ['text23','value23'],
          ['text12','value12'],
          ['text43','different_val_43'],
          ['text12','another_value12'],
          ['text04','value04'],
          ['text43','anohter_value43']]

          d =
          for i, item in enumerate(lst):
          if item[0] not in d:
          d[item[0]] = i

          lst.sort(key=lambda item: d[item[0]])
          print(lst)


          Output:



          [['text43', 'value43'],
          ['text43', 'different_val_43'],
          ['text43', 'anohter_value43'],
          ['text23', 'value23'],
          ['text12', 'value12'],
          ['text12', 'another_value12'],
          ['text04', 'value04']]






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 13 '18 at 13:43

























          answered Nov 13 '18 at 13:14









          Eugene YarmashEugene Yarmash

          83.6k22177259




          83.6k22177259























              0














              Look if this helps. Using sorted()



              lst = [ ['text43','value43'], 
              ['text23','value23'],
              ['text12','value12'],
              ['text43','different_val_43'],
              ['text12','another_value12'],
              ['text04','value04'],
              ['text43','anohter_value43'] ]

              sorted(lst, reverse=True)


              Output:



              [['text43', 'value43'],
              ['text43', 'different_val_43'],
              ['text43', 'anohter_value43'],
              ['text23', 'value23'],
              ['text12', 'value12'],
              ['text12', 'another_value12'],
              ['text04', 'value04']]





              share|improve this answer





























                0














                Look if this helps. Using sorted()



                lst = [ ['text43','value43'], 
                ['text23','value23'],
                ['text12','value12'],
                ['text43','different_val_43'],
                ['text12','another_value12'],
                ['text04','value04'],
                ['text43','anohter_value43'] ]

                sorted(lst, reverse=True)


                Output:



                [['text43', 'value43'],
                ['text43', 'different_val_43'],
                ['text43', 'anohter_value43'],
                ['text23', 'value23'],
                ['text12', 'value12'],
                ['text12', 'another_value12'],
                ['text04', 'value04']]





                share|improve this answer



























                  0












                  0








                  0







                  Look if this helps. Using sorted()



                  lst = [ ['text43','value43'], 
                  ['text23','value23'],
                  ['text12','value12'],
                  ['text43','different_val_43'],
                  ['text12','another_value12'],
                  ['text04','value04'],
                  ['text43','anohter_value43'] ]

                  sorted(lst, reverse=True)


                  Output:



                  [['text43', 'value43'],
                  ['text43', 'different_val_43'],
                  ['text43', 'anohter_value43'],
                  ['text23', 'value23'],
                  ['text12', 'value12'],
                  ['text12', 'another_value12'],
                  ['text04', 'value04']]





                  share|improve this answer















                  Look if this helps. Using sorted()



                  lst = [ ['text43','value43'], 
                  ['text23','value23'],
                  ['text12','value12'],
                  ['text43','different_val_43'],
                  ['text12','another_value12'],
                  ['text04','value04'],
                  ['text43','anohter_value43'] ]

                  sorted(lst, reverse=True)


                  Output:



                  [['text43', 'value43'],
                  ['text43', 'different_val_43'],
                  ['text43', 'anohter_value43'],
                  ['text23', 'value23'],
                  ['text12', 'value12'],
                  ['text12', 'another_value12'],
                  ['text04', 'value04']]






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 29 '18 at 18:10

























                  answered Nov 13 '18 at 14:11









                  Srce CdeSrce Cde

                  1,144511




                  1,144511



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53281603%2fpython-sorting-2d-array-by-the-first-element-not-unique%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      這個網誌中的熱門文章

                      Barbados

                      How to read a connectionString WITH PROVIDER in .NET Core?

                      Node.js Script on GitHub Pages or Amazon S3