การทำงานกับ JSON ใน Python: แปลง แยกวิเคราะห์ และเขียน JSON

JSON(JavaScript Object Notation) เป็นรูปแบบข้อมูลยอดนิยมที่ใช้สำหรับการแลกเปลี่ยนข้อมูลระหว่างแอปพลิเคชัน Python รองรับการจัดการ JSON ผ่าน json โมดูล ช่วยให้คุณสามารถแปลงระหว่าง Python ข้อมูลและรูปแบบ JSON

นี่คือขั้นตอนในการทำงานกับ JSON ใน Python:

แปลง Python ข้อมูลเป็น JSON

ใช้ json.dumps(): แปลง Python วัตถุ(รายการ พจนานุกรม ทูเพิล ฯลฯ) เป็นสตริง JSON

ใช้ json.dump(): เขียน Python ข้อมูลไปยังไฟล์ JSON

 

แปลง JSON เป็น Python ข้อมูล

ใช้ json.loads(): แปลงสตริง JSON เป็น Python วัตถุ(รายการ พจนานุกรม ทูเพิล ฯลฯ)

ใช้ json.load(): อ่านข้อมูลจากไฟล์ JSON และแปลงเป็น Python ข้อมูล

 

ตัวอย่าง:

import json  
  
# Convert Python data to JSON  
data_dict = {"name": "John", "age": 30, "city": "New York"}  
json_string = json.dumps(data_dict)  
print(json_string)   # Output: {"name": "John", "age": 30, "city": "New York"}  
  
# Write Python data to a JSON file  
with open("data.json", "w") as f:  
    json.dump(data_dict, f)  
  
# Convert JSON to Python data  
json_data = '{"name": "John", "age": 30, "city": "New York"}'  
python_dict = json.loads(json_data)  
print(python_dict)   # Output: {'name': 'John', 'age': 30, 'city': 'New York'}  
  
# Read data from a JSON file and convert to Python data  
with open("data.json", "r") as f:  
    data_dict = json.load(f)  
    print(data_dict)   # Output: {'name': 'John', 'age': 30, 'city': 'New York'}  

โปรดทราบว่าเมื่อใช้ JSON Python ชนิดข้อมูลพิเศษ เช่น None, True, False จะถูกแปลงเป็นตัวแทน JSON ที่สอดคล้องกัน: null, true, false, ตามลำดับ