Best way to split key:value pair into two pairs in a dictionary - python











up vote
1
down vote

favorite












So let's say i have a dictionary as:



d={'a-b':[1,2,3],'c-d':[4,5,6]}


And i want to split the keys, i.e 'a-b' into two keys as 'a' and 'b', and keep same value for both etc...



So desired output should be:



{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


I know i can do (Thanks to @Netwave):



d={'a-b':[1,2,3],'c-d':[4,5,6]}
newd={}
for k,v in d.items():
x,y=k.split('-')
newd[x]=v
newd[y]=v
print(newd)
#{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


But i don't think that's efficient,



So i am hoping one of you can give a better solution.










share|improve this question




















  • 1




    Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
    – Julien
    Nov 19 at 6:14












  • @Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
    – U9-Forward
    Nov 19 at 6:16

















up vote
1
down vote

favorite












So let's say i have a dictionary as:



d={'a-b':[1,2,3],'c-d':[4,5,6]}


And i want to split the keys, i.e 'a-b' into two keys as 'a' and 'b', and keep same value for both etc...



So desired output should be:



{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


I know i can do (Thanks to @Netwave):



d={'a-b':[1,2,3],'c-d':[4,5,6]}
newd={}
for k,v in d.items():
x,y=k.split('-')
newd[x]=v
newd[y]=v
print(newd)
#{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


But i don't think that's efficient,



So i am hoping one of you can give a better solution.










share|improve this question




















  • 1




    Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
    – Julien
    Nov 19 at 6:14












  • @Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
    – U9-Forward
    Nov 19 at 6:16















up vote
1
down vote

favorite









up vote
1
down vote

favorite











So let's say i have a dictionary as:



d={'a-b':[1,2,3],'c-d':[4,5,6]}


And i want to split the keys, i.e 'a-b' into two keys as 'a' and 'b', and keep same value for both etc...



So desired output should be:



{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


I know i can do (Thanks to @Netwave):



d={'a-b':[1,2,3],'c-d':[4,5,6]}
newd={}
for k,v in d.items():
x,y=k.split('-')
newd[x]=v
newd[y]=v
print(newd)
#{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


But i don't think that's efficient,



So i am hoping one of you can give a better solution.










share|improve this question















So let's say i have a dictionary as:



d={'a-b':[1,2,3],'c-d':[4,5,6]}


And i want to split the keys, i.e 'a-b' into two keys as 'a' and 'b', and keep same value for both etc...



So desired output should be:



{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


I know i can do (Thanks to @Netwave):



d={'a-b':[1,2,3],'c-d':[4,5,6]}
newd={}
for k,v in d.items():
x,y=k.split('-')
newd[x]=v
newd[y]=v
print(newd)
#{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [4, 5, 6], 'd': [4, 5, 6]}


But i don't think that's efficient,



So i am hoping one of you can give a better solution.







python python-3.x dictionary split key






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 6:02

























asked Nov 19 at 5:59









U9-Forward

10.1k2834




10.1k2834








  • 1




    Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
    – Julien
    Nov 19 at 6:14












  • @Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
    – U9-Forward
    Nov 19 at 6:16
















  • 1




    Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
    – Julien
    Nov 19 at 6:14












  • @Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
    – U9-Forward
    Nov 19 at 6:16










1




1




Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
– Julien
Nov 19 at 6:14






Efficient according to... ? You are doing the bare minimum here so what are you hoping for?
– Julien
Nov 19 at 6:14














@Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
– U9-Forward
Nov 19 at 6:16






@Julien Am... i am hoping for a shorter, more efficient way of doing this, like maybe in a dictionary comprehension or something...
– U9-Forward
Nov 19 at 6:16














1 Answer
1






active

oldest

votes

















up vote
4
down vote



accepted










Just use split once:



for k,v in d.items():
x, y = k.split("-")
newd[x] = v
newd[y] = v


Or iterate through it:



for k,v in d.items():
for new_k in k.split("-")
newd[new_k] = v


As a dict comprehension:



{new_k : v for k,v in d.items() for new_k in k.split("-")}





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',
    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%2f53369070%2fbest-way-to-split-keyvalue-pair-into-two-pairs-in-a-dictionary-python%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    4
    down vote



    accepted










    Just use split once:



    for k,v in d.items():
    x, y = k.split("-")
    newd[x] = v
    newd[y] = v


    Or iterate through it:



    for k,v in d.items():
    for new_k in k.split("-")
    newd[new_k] = v


    As a dict comprehension:



    {new_k : v for k,v in d.items() for new_k in k.split("-")}





    share|improve this answer



























      up vote
      4
      down vote



      accepted










      Just use split once:



      for k,v in d.items():
      x, y = k.split("-")
      newd[x] = v
      newd[y] = v


      Or iterate through it:



      for k,v in d.items():
      for new_k in k.split("-")
      newd[new_k] = v


      As a dict comprehension:



      {new_k : v for k,v in d.items() for new_k in k.split("-")}





      share|improve this answer

























        up vote
        4
        down vote



        accepted







        up vote
        4
        down vote



        accepted






        Just use split once:



        for k,v in d.items():
        x, y = k.split("-")
        newd[x] = v
        newd[y] = v


        Or iterate through it:



        for k,v in d.items():
        for new_k in k.split("-")
        newd[new_k] = v


        As a dict comprehension:



        {new_k : v for k,v in d.items() for new_k in k.split("-")}





        share|improve this answer














        Just use split once:



        for k,v in d.items():
        x, y = k.split("-")
        newd[x] = v
        newd[y] = v


        Or iterate through it:



        for k,v in d.items():
        for new_k in k.split("-")
        newd[new_k] = v


        As a dict comprehension:



        {new_k : v for k,v in d.items() for new_k in k.split("-")}






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 19 at 6:01

























        answered Nov 19 at 6:00









        Netwave

        11.7k21942




        11.7k21942






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53369070%2fbest-way-to-split-keyvalue-pair-into-two-pairs-in-a-dictionary-python%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







            Popular posts from this blog

            Create new schema in PostgreSQL using DBeaver

            Deepest pit of an array with Javascript: test on Codility

            Costa Masnaga