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;








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?










share|improve this question






























    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?










    share|improve this question


























      0












      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 13:58









      Bhavnish AroraBhavnish Arora

      11 bronze badge




      11 bronze badge

























          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer

























          • 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











          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%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









          0














          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.






          share|improve this answer

























          • 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
















          0














          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.






          share|improve this answer

























          • 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














          0












          0








          0







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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


















          • 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









          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.



















          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%2f55379046%2fconverting-my-custom-csv-format-string-to-dict-in-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

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해