Python Basics — Day 13 JSON (JavaScript Object Notation)
01. What is JSON?
A lightweight data format that is easy to read and write
Very similar to Python dictionaries
Widely used for APIs, data storage, and configuration files
{
"name": "Sabin",
"age": 30,
"skills": ["Python", "Flask", "React"]...
sabinsim.hashnode.dev2 min read