Convert multidimensional dictionary (fetchall-type) to multidimensional list Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to merge two dictionaries in a single expression?How do I check if a list is empty?How do I sort a list of dictionaries by a value of the dictionary?Finding the index of an item given a list containing it in PythonHow do I sort a dictionary by value?How to make a flat list out of list of listsAdd new keys to a dictionary?Check if a given key already exists in a dictionaryHow do I list all files of a directory?Iterating over dictionaries using 'for' loops

How much damage would a cupful of neutron star matter do to the Earth?

What is the meaning of 'breadth' in breadth first search?

How to report t statistic from R

What does it mean that physics no longer uses mechanical models to describe phenomena?

Do I really need to have a message in a novel to appeal to readers?

Why can't I install Tomboy in Ubuntu Mate 19.04?

Why weren't discrete x86 CPUs ever used in game hardware?

What does 丫 mean? 丫是什么意思?

Karn the great creator - 'card from outside the game' in sealed

AppleTVs create a chatty alternate WiFi network

What order were files/directories output in dir?

Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?

How does light 'choose' between wave and particle behaviour?

Is CEO the "profession" with the most psychopaths?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

Maximum summed subsequences with non-adjacent items

Tannaka duality for semisimple groups

How does Belgium enforce obligatory attendance in elections?

Drawing spherical mirrors

What's the point of the test set?

How often does castling occur in grandmaster games?

An adverb for when you're not exaggerating

What to do with repeated rejections for phd position

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?



Convert multidimensional dictionary (fetchall-type) to multidimensional list



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to merge two dictionaries in a single expression?How do I check if a list is empty?How do I sort a list of dictionaries by a value of the dictionary?Finding the index of an item given a list containing it in PythonHow do I sort a dictionary by value?How to make a flat list out of list of listsAdd new keys to a dictionary?Check if a given key already exists in a dictionaryHow do I list all files of a directory?Iterating over dictionaries using 'for' loops



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have the necessity to convert a multidimensional dictionary (as a database fetchall function returns) to a multidimensional list:



Multidimensional dictionary (fetchall-type)



multi_dict = [
'key1': 'value1', 'key2': 'value2', 'key3': 'value3',
'key1': 'value10', 'key2': 'value20', 'key3': 'value30'
]


Multidimensional list (output wanted)



multi_list = [
['value1', 'value2', 'value3']
['value10', 'value20', 'value30']
]









share|improve this question
























  • [entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

    – Display name
    Jan 28 at 5:11

















0















I have the necessity to convert a multidimensional dictionary (as a database fetchall function returns) to a multidimensional list:



Multidimensional dictionary (fetchall-type)



multi_dict = [
'key1': 'value1', 'key2': 'value2', 'key3': 'value3',
'key1': 'value10', 'key2': 'value20', 'key3': 'value30'
]


Multidimensional list (output wanted)



multi_list = [
['value1', 'value2', 'value3']
['value10', 'value20', 'value30']
]









share|improve this question
























  • [entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

    – Display name
    Jan 28 at 5:11













0












0








0








I have the necessity to convert a multidimensional dictionary (as a database fetchall function returns) to a multidimensional list:



Multidimensional dictionary (fetchall-type)



multi_dict = [
'key1': 'value1', 'key2': 'value2', 'key3': 'value3',
'key1': 'value10', 'key2': 'value20', 'key3': 'value30'
]


Multidimensional list (output wanted)



multi_list = [
['value1', 'value2', 'value3']
['value10', 'value20', 'value30']
]









share|improve this question
















I have the necessity to convert a multidimensional dictionary (as a database fetchall function returns) to a multidimensional list:



Multidimensional dictionary (fetchall-type)



multi_dict = [
'key1': 'value1', 'key2': 'value2', 'key3': 'value3',
'key1': 'value10', 'key2': 'value20', 'key3': 'value30'
]


Multidimensional list (output wanted)



multi_list = [
['value1', 'value2', 'value3']
['value10', 'value20', 'value30']
]






python multidimensional-array






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 10:57









smci

15.7k679110




15.7k679110










asked Jan 28 at 5:06









KeaireKeaire

330321




330321












  • [entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

    – Display name
    Jan 28 at 5:11

















  • [entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

    – Display name
    Jan 28 at 5:11
















[entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

– Display name
Jan 28 at 5:11





[entry.values() for entry in multi_dict.items()] or simply iterate over your multi_dict and add the values of your list to your multi_list if i get your question right.

– Display name
Jan 28 at 5:11












1 Answer
1






active

oldest

votes


















1














You just need to extract values from each dictionary in loop (in this example I used list comprehension).



multi_list = [list(d.values()) for d in multi_dict]



list(d.values()) is there because in python3, .values() returns dict_values object, not list so in python2 this can be omited and you can just do multi_list = [d.values() for d in multi_dict].






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%2f54395825%2fconvert-multidimensional-dictionary-fetchall-type-to-multidimensional-list%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









    1














    You just need to extract values from each dictionary in loop (in this example I used list comprehension).



    multi_list = [list(d.values()) for d in multi_dict]



    list(d.values()) is there because in python3, .values() returns dict_values object, not list so in python2 this can be omited and you can just do multi_list = [d.values() for d in multi_dict].






    share|improve this answer



























      1














      You just need to extract values from each dictionary in loop (in this example I used list comprehension).



      multi_list = [list(d.values()) for d in multi_dict]



      list(d.values()) is there because in python3, .values() returns dict_values object, not list so in python2 this can be omited and you can just do multi_list = [d.values() for d in multi_dict].






      share|improve this answer

























        1












        1








        1







        You just need to extract values from each dictionary in loop (in this example I used list comprehension).



        multi_list = [list(d.values()) for d in multi_dict]



        list(d.values()) is there because in python3, .values() returns dict_values object, not list so in python2 this can be omited and you can just do multi_list = [d.values() for d in multi_dict].






        share|improve this answer













        You just need to extract values from each dictionary in loop (in this example I used list comprehension).



        multi_list = [list(d.values()) for d in multi_dict]



        list(d.values()) is there because in python3, .values() returns dict_values object, not list so in python2 this can be omited and you can just do multi_list = [d.values() for d in multi_dict].







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 28 at 5:09









        DamianDamian

        343210




        343210





























            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%2f54395825%2fconvert-multidimensional-dictionary-fetchall-type-to-multidimensional-list%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

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript