How to Convert JSON to String in Python?

By Hardik Savani October 30, 2023 Category : Python

Hello Artisan,

Here, I will show you how to convert json to string in python. I explained simply step by step python convert json to string. In this article, we will implement a how to convert json array to string in python. In this article, we will implement a python convert json to string and back.

Here, we will use json library to convert json to string in python. we will create "myJsonArray" array with website lists and convert it to string using dumps() method into python list. so let's see the simple example:

Example:

main.py

import json
  
# python convert json to string
myJsonArray = {"websites": ["itsolutionstuff.com", "hdtuto.com", "nicesnippets.com"]}
data = json.dumps(myJsonArray)
  
print(data)

Output:

{"websites": ["itsolutionstuff.com", "hdtuto.com", "nicesnippets.com"]}

I hope it can help you...

Tags :
Shares