converting my custom CSV format string to dict in pythonHow to output MySQL query results in CSV format?Convert bytes to a string?Parsing CSV files in C#, with headerHow to import CSV file to MySQL tableIs there a way to include commas in CSV columns without breaking the formatting?Best way to convert string to bytes in Python 3?Convert CSV table into custom formatSkip the headers when editing a csv file using PythonConvert list of dicts to CSVpython dict in comma separated csv file
To plot branch cut of logarithm
How to detect a failed AES256 decryption programmatically?
Do living authors still get paid royalties for their old work?
Best model for precedence constraints within scheduling problem
Would getting a natural 20 with a penalty still count as a critical hit?
Unsolved Problems due to Lack of Computational Power
Quick destruction of a helium filled airship?
Why was ramjet fuel used as hydraulic fluid during Saturn V checkout?
Radix2 Fast Fourier Transform implemented in C++
Gofer work in exchange for Letter of Recommendation
How to use the passive form to say "This flower was watered."
"A y'vama acquires herself through chalitza", really?
Number of matrices with bounded products of rows and columns
What happens to thrust and drag in a straight and level flight?
Replacing old plug-in 220V range with new hardwire 3-wire electric cooktop: remove outlet or add a plug?
Why should P.I be willing to write strong LOR even if that means losing a undergraduate from his/her lab?
Installing the original OS X version onto a Mac?
How does the illumination of the sky from the sun compare to that of the moon?
Output with the same length always
Has there ever been a truly bilingual country prior to the contemporary period?
What happened after the end of the Truman Show?
Is there a commercial liquid with refractive index greater than n=2?
Why is su world executable?
Virtual destructor moves object out of rodata section
converting my custom CSV format string to dict in python
How to output MySQL query results in CSV format?Convert bytes to a string?Parsing CSV files in C#, with headerHow to import CSV file to MySQL tableIs there a way to include commas in CSV columns without breaking the formatting?Best way to convert string to bytes in Python 3?Convert CSV table into custom formatSkip the headers when editing a csv file using PythonConvert list of dicts to CSVpython dict in comma separated csv file
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a method in python that receives a dict and in that dict two variables itself contains the variables which is in some CSV format and i want to convert that variable of variables into a separate dict so that i get the the value of some field in first variable in second variable.
dict = 'type':'test',
'names':'"type","value,id","count"',
'values':'"test","123","1"'
I want to get the the value of count that is 1.How can i do this?
python-3.x csv
add a comment |
I have a method in python that receives a dict and in that dict two variables itself contains the variables which is in some CSV format and i want to convert that variable of variables into a separate dict so that i get the the value of some field in first variable in second variable.
dict = 'type':'test',
'names':'"type","value,id","count"',
'values':'"test","123","1"'
I want to get the the value of count that is 1.How can i do this?
python-3.x csv
add a comment |
I have a method in python that receives a dict and in that dict two variables itself contains the variables which is in some CSV format and i want to convert that variable of variables into a separate dict so that i get the the value of some field in first variable in second variable.
dict = 'type':'test',
'names':'"type","value,id","count"',
'values':'"test","123","1"'
I want to get the the value of count that is 1.How can i do this?
python-3.x csv
I have a method in python that receives a dict and in that dict two variables itself contains the variables which is in some CSV format and i want to convert that variable of variables into a separate dict so that i get the the value of some field in first variable in second variable.
dict = 'type':'test',
'names':'"type","value,id","count"',
'values':'"test","123","1"'
I want to get the the value of count that is 1.How can i do this?
python-3.x csv
python-3.x csv
asked Mar 27 at 13:58
Bhavnish AroraBhavnish Arora
11 bronze badge
11 bronze badge
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you mean that "in that dict two variables" are key and value in dictionary and you want to set some values to other dictionaries and then get them you can probably do something like this.
Note that dictionaries are key value pairs and you get values by keys, which are many times of type string.
One way to create dictionaries like that is:
my_dict = dict(x=dict(a = 1), y=dict(b=dict(c = 2, d = 3)))
The line above is basically this.
x: a: 1,
y:
b:
c: 2,
d: 3
Access the values:
my_dict['x'] ## output - 'a': 1
my_dict['x']['a'] ## output - 1
Ddd/update items pairs to dictionary:
my_dict['z'] = 4
my_dict['x']['e'] = 5
After all changes my_dict would probably look like this.
x:
a: 1,
e: 5
,
y:
b:
c: 2,
d: 3
,
z: 4
Remove items:
del a['x'] ## or
a.pop('x')
I hope this was helpful.
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
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%2f55379046%2fconverting-my-custom-csv-format-string-to-dict-in-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
If you mean that "in that dict two variables" are key and value in dictionary and you want to set some values to other dictionaries and then get them you can probably do something like this.
Note that dictionaries are key value pairs and you get values by keys, which are many times of type string.
One way to create dictionaries like that is:
my_dict = dict(x=dict(a = 1), y=dict(b=dict(c = 2, d = 3)))
The line above is basically this.
x: a: 1,
y:
b:
c: 2,
d: 3
Access the values:
my_dict['x'] ## output - 'a': 1
my_dict['x']['a'] ## output - 1
Ddd/update items pairs to dictionary:
my_dict['z'] = 4
my_dict['x']['e'] = 5
After all changes my_dict would probably look like this.
x:
a: 1,
e: 5
,
y:
b:
c: 2,
d: 3
,
z: 4
Remove items:
del a['x'] ## or
a.pop('x')
I hope this was helpful.
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
add a comment |
If you mean that "in that dict two variables" are key and value in dictionary and you want to set some values to other dictionaries and then get them you can probably do something like this.
Note that dictionaries are key value pairs and you get values by keys, which are many times of type string.
One way to create dictionaries like that is:
my_dict = dict(x=dict(a = 1), y=dict(b=dict(c = 2, d = 3)))
The line above is basically this.
x: a: 1,
y:
b:
c: 2,
d: 3
Access the values:
my_dict['x'] ## output - 'a': 1
my_dict['x']['a'] ## output - 1
Ddd/update items pairs to dictionary:
my_dict['z'] = 4
my_dict['x']['e'] = 5
After all changes my_dict would probably look like this.
x:
a: 1,
e: 5
,
y:
b:
c: 2,
d: 3
,
z: 4
Remove items:
del a['x'] ## or
a.pop('x')
I hope this was helpful.
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
add a comment |
If you mean that "in that dict two variables" are key and value in dictionary and you want to set some values to other dictionaries and then get them you can probably do something like this.
Note that dictionaries are key value pairs and you get values by keys, which are many times of type string.
One way to create dictionaries like that is:
my_dict = dict(x=dict(a = 1), y=dict(b=dict(c = 2, d = 3)))
The line above is basically this.
x: a: 1,
y:
b:
c: 2,
d: 3
Access the values:
my_dict['x'] ## output - 'a': 1
my_dict['x']['a'] ## output - 1
Ddd/update items pairs to dictionary:
my_dict['z'] = 4
my_dict['x']['e'] = 5
After all changes my_dict would probably look like this.
x:
a: 1,
e: 5
,
y:
b:
c: 2,
d: 3
,
z: 4
Remove items:
del a['x'] ## or
a.pop('x')
I hope this was helpful.
If you mean that "in that dict two variables" are key and value in dictionary and you want to set some values to other dictionaries and then get them you can probably do something like this.
Note that dictionaries are key value pairs and you get values by keys, which are many times of type string.
One way to create dictionaries like that is:
my_dict = dict(x=dict(a = 1), y=dict(b=dict(c = 2, d = 3)))
The line above is basically this.
x: a: 1,
y:
b:
c: 2,
d: 3
Access the values:
my_dict['x'] ## output - 'a': 1
my_dict['x']['a'] ## output - 1
Ddd/update items pairs to dictionary:
my_dict['z'] = 4
my_dict['x']['e'] = 5
After all changes my_dict would probably look like this.
x:
a: 1,
e: 5
,
y:
b:
c: 2,
d: 3
,
z: 4
Remove items:
del a['x'] ## or
a.pop('x')
I hope this was helpful.
answered Mar 27 at 14:48
Tigran FahradyanTigran Fahradyan
1432 silver badges8 bronze badges
1432 silver badges8 bronze badges
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
add a comment |
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
thanks for your response, but i have the value in the format:-'names':'"type","value,id","count"' format. I want to first split that into individual fields.How can i split it and get the values? I am not setting the values but i got input in this format and i have to return the value corresponding to count in my example.
– Bhavnish Arora
Mar 27 at 18:34
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55379046%2fconverting-my-custom-csv-format-string-to-dict-in-python%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