當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python JSON轉string用法及代碼示例


使用 API 調用跨平台傳輸的數據。數據大多以 JSON 格式檢索。我們可以將獲取的 JSON 數據轉換為 String 數據,以便於存儲和使用。

讓我們看看如何將 JSON 轉換為字符串。

方法#1:Json to String 使用 “json.dumps”

Python3


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

輸出:

方法 #2:使用請求和 “json.dumps” 的 API 將 JSON 轉換為字符串

Python3


import json
import requests
# Get dummy data using an API
res = requests.get("http://dummy.restapiexample.com/api/v1/employees")
# Convert data to dict
data = json.loads(res.text)
# Convert dict to string
data = json.dumps(data)
print(data)
print(type(data))

輸出:

相關用法


注:本文由純淨天空篩選整理自ayushmankumar7大神的英文原創作品 Python – Convert JSON to string。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。