“Erstellen Sie ein Wörterbuch aus String Python” Code-Antworten

Python erstellt ein Diktieren aus einer Zeichenfolge

# 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))
Bastien Chatelain

Erstellen Sie ein Wörterbuch aus String Python

# Python3 code to convert 
# a string to a dictionary
  
# Initializing String 
string = "{'A':13, 'B':14, 'C':15}"
  
# eval() convert string to dictionary
Dict = eval(string)
print(Dict)
print(Dict['A'])
print(Dict['C'])
dkb234

Konvertieren Sie das Diktieren in Python

my_dict = {"Hello" : True, "World" : False}
print(str(my_dict))
TheProgrammer

Python erstellt ein Diktieren aus einer Zeichenfolge

# 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))
SuperPro Cz

Ähnliche Antworten wie “Erstellen Sie ein Wörterbuch aus String Python”

Fragen ähnlich wie “Erstellen Sie ein Wörterbuch aus String Python”

Weitere verwandte Antworten zu “Erstellen Sie ein Wörterbuch aus String Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen