Several ways Python converts a string into a dictionary

Source: Internet
Author: User

When we encounter a string similar to {' A ': 1, ' B ': 2, ' C ': 3}, and you want to convert it to a dictionary for processing, you can use the following methods:

1. Python's own eval function (unsafe)

' {"a": 1, "B":2, "C": {"D":1}} '  = eval (dictstr)

2. Using the AST module's Literal_eval function (secure)

' {"a": 1, "B":2, "C": {"D":1}} '  = Ast.literal_eval (DICTSTR)

3. Using the loads function of the JSON module

Dictstr = ' {' A ': 1, ' B ': 2, ' C ': {' d ': 1} ' mydict = Json.loads (DICTSTR)

Make the dictionary orderly

 from Import  '{' A ': 1, ' B ': 2, ' C ': 3}'# Returns a class object that can continue processing

Several ways Python converts a string into a dictionary

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.