“Text an Wörterbuch Python” Code-Antworten

Umwandlung einer Zeichenfolge in ein Wörterbuch in Python

>>> import ast
>>> ast.literal_eval("{'muffin' : 'lolz', 'foo' : 'kitty'}")
{'muffin': 'lolz', 'foo': 'kitty'}
Annoyed Armadillo

Text an Wörterbuch Python

Method 1:
# Python3 code to demonstrate
# convert dictionary string to dictionary
# using ast.literal_eval()
import ast

# initializing string
test_string = '{"Nikhil" : 1, "Akshat" : 2, "Akash" : 3}'

# printing original string
print("The original string : " + str(test_string))

# using ast.literal_eval()
# convert dictionary string to dictionary
res = ast.literal_eval(test_string)

# print result
print("The converted dictionary : " + str(res))


Method 2:
# Python3 code to demonstrate
# convert dictionary string to dictionary
# using json.loads()
import json

# initializing string
test_string = '{"Nikhil" : 1, "Akshat" : 2, "Akash" : 3}'

# printing original string
print("The original string : " + str(test_string))

# using json.loads()
# convert dictionary string to dictionary
res = json.loads(test_string)

# print result
print("The converted dictionary : " + str(res))
Clever Caribou

Konvertieren Sie den Antworttext in Wörterbuch Python

import requests
 
# Making a get request
response = requests.get('https://api.github.com')
 
# printing request text
print(response.text)
Weary Whale

Ähnliche Antworten wie “Text an Wörterbuch Python”

Fragen ähnlich wie “Text an Wörterbuch Python”

Weitere verwandte Antworten zu “Text an Wörterbuch Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen