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;
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
add a comment |
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
[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
add a comment |
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
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
python multidimensional-array
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
add a comment |
[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
add a comment |
1 Answer
1
active
oldest
votes
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]
.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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]
.
add a comment |
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]
.
add a comment |
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]
.
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]
.
answered Jan 28 at 5:09
DamianDamian
343210
343210
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
[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