Let’s see how you can convert a string to json.
Method # 1: dictate an object to a string object using json.loads
# Python code for demonstration # convert string to json # using json.loads import json # initializing the json object ini_string = { ’nikhil’ : 1 , ’akash’ : 5 , ’manjeet’ : 10 , ’akshat’ : 15 } # print initial json ini_string = json.dumps (ini_string) print ( "initial 1st dictionary" , ini_string) print ( " type of ini_object " , type (ini_string)) # string conversion and in json final_dictionary = json. loads (ini_string) # print the final result print ( "final dictionary" , str (final_dictionary)) print ( "type of final_dictionary" , type (final_dictionary)) |
Exit :
initial 1st dictionary {’manjeet’: 10, ’nikhil’: 1, ’akshat’: 15, ’akash’: 5}
type of ini_object "type ’dict’"
final dictionary {’nikhil’: 1, ’manjeet’: 10, ’akshat’: 15, ’a kash ’: 5}
type of final_dictionary "type’ str ’& gt;
Method # 2: a str object to dictate an object using eval ()
# Python code for demonstration # conversion lines in json # using eval # json object string initialization ini_string = " { ’nikhil’ : 1 , ’akash’ : 5 , ’manjeet’ : 10 , ’ akshat’ : 15 } " # print initial json print ( "initial 1st dictionary" , ini_string) print ( "type of ini_object" , type (ini_string)) # convert string to json final_dictionary = eval (ini_string) # print the final result print ( "final dictionary" , str (final_dictionary)) print ( "type of final_dictionary" , type (final_dictionary)) |
table>
Exit :
initial 1st dictionary {’nikhil’: 1, ’akash’: 5, ’manjeet’: 10, ’akshat’: 15}
type of ini_object "class’ str ’& gt;
final dictionary {’ nikhil ’: 1,’ manjeet ’: 10,’ akash ’: 5,’ akshat ’: 15}
type of final_dictionary "class’ dict’"
Python | Ways to convert string to json object Python functions: Questions
Python | Ways to convert string to json object String Variables: Questions
Shop
Best laptop for Fortnite
$
Best laptop for Excel
$
Best laptop for Solidworks
$
Best laptop for Roblox
$
Best computer for crypto mining
$
Best laptop for Sims 4
$
Best laptop for Zoom
$499
Best laptop for Minecraft
$590
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method