Print nested dictionary in python and export all on a csv file 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 do I copy a file in Python?Convert two lists into a dictionary in PythonHow can I safely create a nested directory in Python?Save PL/pgSQL output from PostgreSQL to a CSV fileCreate a dictionary with list comprehension in PythonHow do I list all files of a directory?Find all files in a directory with extension .txt in PythonHow do you append to a file in Python?How to print to stderr in Python?How to remove a key from a Python dictionary?
Lagrange four-squares theorem --- deterministic complexity
What does this say in Elvish?
How could we fake a moon landing now?
What makes a man succeed?
An adverb for when you're not exaggerating
Is multiple magic items in one inherently imbalanced?
How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?
Why weren't discrete x86 CPUs ever used in game hardware?
Time evolution of a Gaussian wave packet, why convert to k-space?
How many morphisms from 1 to 1+1 can there be?
Random body shuffle every night—can we still function?
Did any compiler fully use 80-bit floating point?
Maximum summed subsequences with non-adjacent items
Would it be easier to apply for a UK visa if there is a host family to sponsor for you in going there?
What initially awakened the Balrog?
If the probability of a dog barking one or more times in a given hour is 84%, then what is the probability of a dog barking in 30 minutes?
Should a wizard buy fine inks every time he want to copy spells into his spellbook?
Is there hard evidence that the grant peer review system performs significantly better than random?
What's the difference between the capability remove_users and delete_users?
The test team as an enemy of development? And how can this be avoided?
What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?
How would a mousetrap for use in space work?
Is CEO the "profession" with the most psychopaths?
Semigroups with no morphisms between them
Print nested dictionary in python and export all on a csv file
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 do I copy a file in Python?Convert two lists into a dictionary in PythonHow can I safely create a nested directory in Python?Save PL/pgSQL output from PostgreSQL to a CSV fileCreate a dictionary with list comprehension in PythonHow do I list all files of a directory?Find all files in a directory with extension .txt in PythonHow do you append to a file in Python?How to print to stderr in Python?How to remove a key from a Python dictionary?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a dictionary like this:
'https://github.com/project1': 'Batchfile': '91', 'Gradle': '110', 'INI': '25', 'Java': '1879', 'Markdown': '393', 'QMake': '52', 'Shell': '161', 'Text': '202', 'XML': '943'
'https://github.com/project2': 'Batchfile': '91', 'Gradle': '123', 'INI': '25', 'Java': '1305', 'Markdown': '121', 'QMake': '52', 'Shell': '161', 'XML': '234'
'https://github.com/project3': 'Batchfile': '91', 'Gradle': '360', 'INI': '27', 'Java': '805', 'Markdown': '27', 'QMake': '156', 'Shell': '161', 'XML': '380'
It is a structured in this way:
'url': 'lang1': 'locs', 'lang2': 'locs', ...
'url2': 'lang6': 'locs', 'lang5': 'locs', ...
where lang stay for languages and locs stay for line of codes (related to the previous language).
What i want to do is print this dictionary in a pretty way,so i can see the results before the export.
After that i want to export the dictionary into a csv file to make other operation. The problem is the languages are not sorted. That is what i mean:
'https://github.com/Project4': 'HTML': '29', 'Java': '229', 'Markdown': '101', 'Maven POM': '88', 'XML': '62'
'https://github.com/Project5': 'Batchfile': '85', 'Gradle': '84', 'INI': '22', 'Java': '2422', 'Markdown': '25', 'Prolog': '25', 'Shell': '173', 'XML': '3243', 'YAML': '43'
Any idea?
python csv dictionary
add a comment |
I have a dictionary like this:
'https://github.com/project1': 'Batchfile': '91', 'Gradle': '110', 'INI': '25', 'Java': '1879', 'Markdown': '393', 'QMake': '52', 'Shell': '161', 'Text': '202', 'XML': '943'
'https://github.com/project2': 'Batchfile': '91', 'Gradle': '123', 'INI': '25', 'Java': '1305', 'Markdown': '121', 'QMake': '52', 'Shell': '161', 'XML': '234'
'https://github.com/project3': 'Batchfile': '91', 'Gradle': '360', 'INI': '27', 'Java': '805', 'Markdown': '27', 'QMake': '156', 'Shell': '161', 'XML': '380'
It is a structured in this way:
'url': 'lang1': 'locs', 'lang2': 'locs', ...
'url2': 'lang6': 'locs', 'lang5': 'locs', ...
where lang stay for languages and locs stay for line of codes (related to the previous language).
What i want to do is print this dictionary in a pretty way,so i can see the results before the export.
After that i want to export the dictionary into a csv file to make other operation. The problem is the languages are not sorted. That is what i mean:
'https://github.com/Project4': 'HTML': '29', 'Java': '229', 'Markdown': '101', 'Maven POM': '88', 'XML': '62'
'https://github.com/Project5': 'Batchfile': '85', 'Gradle': '84', 'INI': '22', 'Java': '2422', 'Markdown': '25', 'Prolog': '25', 'Shell': '173', 'XML': '3243', 'YAML': '43'
Any idea?
python csv dictionary
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50
add a comment |
I have a dictionary like this:
'https://github.com/project1': 'Batchfile': '91', 'Gradle': '110', 'INI': '25', 'Java': '1879', 'Markdown': '393', 'QMake': '52', 'Shell': '161', 'Text': '202', 'XML': '943'
'https://github.com/project2': 'Batchfile': '91', 'Gradle': '123', 'INI': '25', 'Java': '1305', 'Markdown': '121', 'QMake': '52', 'Shell': '161', 'XML': '234'
'https://github.com/project3': 'Batchfile': '91', 'Gradle': '360', 'INI': '27', 'Java': '805', 'Markdown': '27', 'QMake': '156', 'Shell': '161', 'XML': '380'
It is a structured in this way:
'url': 'lang1': 'locs', 'lang2': 'locs', ...
'url2': 'lang6': 'locs', 'lang5': 'locs', ...
where lang stay for languages and locs stay for line of codes (related to the previous language).
What i want to do is print this dictionary in a pretty way,so i can see the results before the export.
After that i want to export the dictionary into a csv file to make other operation. The problem is the languages are not sorted. That is what i mean:
'https://github.com/Project4': 'HTML': '29', 'Java': '229', 'Markdown': '101', 'Maven POM': '88', 'XML': '62'
'https://github.com/Project5': 'Batchfile': '85', 'Gradle': '84', 'INI': '22', 'Java': '2422', 'Markdown': '25', 'Prolog': '25', 'Shell': '173', 'XML': '3243', 'YAML': '43'
Any idea?
python csv dictionary
I have a dictionary like this:
'https://github.com/project1': 'Batchfile': '91', 'Gradle': '110', 'INI': '25', 'Java': '1879', 'Markdown': '393', 'QMake': '52', 'Shell': '161', 'Text': '202', 'XML': '943'
'https://github.com/project2': 'Batchfile': '91', 'Gradle': '123', 'INI': '25', 'Java': '1305', 'Markdown': '121', 'QMake': '52', 'Shell': '161', 'XML': '234'
'https://github.com/project3': 'Batchfile': '91', 'Gradle': '360', 'INI': '27', 'Java': '805', 'Markdown': '27', 'QMake': '156', 'Shell': '161', 'XML': '380'
It is a structured in this way:
'url': 'lang1': 'locs', 'lang2': 'locs', ...
'url2': 'lang6': 'locs', 'lang5': 'locs', ...
where lang stay for languages and locs stay for line of codes (related to the previous language).
What i want to do is print this dictionary in a pretty way,so i can see the results before the export.
After that i want to export the dictionary into a csv file to make other operation. The problem is the languages are not sorted. That is what i mean:
'https://github.com/Project4': 'HTML': '29', 'Java': '229', 'Markdown': '101', 'Maven POM': '88', 'XML': '62'
'https://github.com/Project5': 'Batchfile': '85', 'Gradle': '84', 'INI': '22', 'Java': '2422', 'Markdown': '25', 'Prolog': '25', 'Shell': '173', 'XML': '3243', 'YAML': '43'
Any idea?
python csv dictionary
python csv dictionary
asked Mar 22 at 11:31
Mattia BMattia B
266
266
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50
add a comment |
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50
add a comment |
0
active
oldest
votes
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%2f55298689%2fprint-nested-dictionary-in-python-and-export-all-on-a-csv-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55298689%2fprint-nested-dictionary-in-python-and-export-all-on-a-csv-file%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
Did you mean to say that the languages are not printing in sorted order while you use print function? Python dict, or any dict/hash for that matter won't guarantee elements in sorted order. You can use sort function to sort it.
– sanooj
Mar 22 at 11:37
After sorting it how i can print it pretty and export as csv file?
– Mattia B
Mar 22 at 11:50