Python แปลงจาก Python เป็น JSON
แปลงจาก Python เป็น JSON
หากคุณมีอ็อบเจ็กต์ Python คุณสามารถแปลงเป็นสตริง JSON ได้โดยใช้json.dumps()
เมธอด
ตัวอย่าง
แปลงจาก Python เป็น JSON:
import json
# a Python object (dict):
x = {
"name":
"John",
"age": 30,
"city": "New York"
}
#
convert into JSON:
y = json.dumps(x)
# the result is a JSON string:
print(y)
คุณสามารถแปลงอ็อบเจ็กต์ Python ประเภทต่อไปนี้เป็นสตริง JSON:
- dict
- รายการ
- ทูเพิล
- สตริง
- int
- ลอย
- จริง
- เท็จ
- ไม่มี
ตัวอย่าง
แปลงวัตถุ Python เป็นสตริง JSON และพิมพ์ค่า:
import json
print(json.dumps({"name": "John", "age": 30}))
print(json.dumps(["apple",
"bananas"]))
print(json.dumps(("apple", "bananas")))
print(json.dumps("hello"))
print(json.dumps(42))
print(json.dumps(31.76))
print(json.dumps(True))
print(json.dumps(False))
print(json.dumps(None))
เมื่อคุณแปลงจาก Python เป็น JSON ออบเจ็กต์ Python จะถูกแปลงเป็น JSON (JavaScript) ที่เทียบเท่ากัน:
Python | JSON |
---|---|
dict | Object |
list | Array |
tuple | Array |
str | String |
int | Number |
float | Number |
True | true |
False | false |
None | null |
ตัวอย่าง
แปลงวัตถุ Python ที่มีประเภทข้อมูลทางกฎหมายทั้งหมด:
import json
x = {
"name":
"John",
"age": 30,
"married": True,
"divorced": False,
"children": ("Ann","Billy"),
"pets":
None,
"cars": [
{"model": "BMW 230", "mpg":
27.5},
{"model": "Ford Edge", "mpg": 24.1}
]
}
print(json.dumps(x))