Friday, September 5, 2025
HomeLanguagesPython – Convert JSON to string

Python – Convert JSON to string

Data in transmitted across platforms using API calls. Data is mostly retrieved in JSON format. We can convert the obtained JSON data into String data for the ease of storing and working with it.

Let’s see how to convert JSON to String.

Method #1: Json to String on dummy data using “json.dumps”

Python3




import json
 
# create a sample json
 
a = {"name" : "Lazyroar", "Topic" : "Json to String", "Method": 1}
 
# Convert JSON to String
 
y = json.dumps(a)
 
print(y)
print(type(y))


Output: 
 

Method #2: Json to String using an API using requests and “json.dumps”

Python3




import json
import requests
 
# Get dummy data using an API
 
# Convert data to dict
data = json.loads(res.text)
 
# Convert dict to string
data = json.dumps(data)
 
print(data)
print(type(data))


Output: 

 

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS