import json
my_str='true'
print(json.loads(my_str)) # True
print(type(json.loads(my_str))) # <class 'bool'>
Getting None type
import json
my_str='null'
print(json.loads(my_str)) # None
print(type(json.loads(my_str))) # <class 'NoneType'>
Getting a List
import json
my_str='["First","Second","Third"]'
print(json.loads(my_str)) # ['First', 'Second', 'Third']
print(type(json.loads(my_str))) # <class 'list'>
Getting a Dictionary
import json
my_str='{"id":"2","name":"Max Ruin","class1":"Three5","mark":"85"}'
print(json.loads(my_str)) # {'id': '2', 'name': 'Max Ruin', 'class1': 'Three5', 'mark': '85'}
print(type(json.loads(my_str))) # <class 'dict'>
import json
nested_json = '{"name": "John", "details": {"age": 30, "city": "New York"}}'
output = json.loads(nested_json)
print(output) # Output: {'name': 'John', 'details': {'age': 30, 'city': 'New York'}}
Output:
{'name': 'John', 'details': {'age': 30, 'city': 'New York'}}
import json
json_array = '[10, 20, 30, 40]'
output = json.loads(json_array)
print(output) # Output: [10, 20, 30, 40]
Output:
[10, 20, 30, 40]
import json
malformed_json = '{"name": "John", "age": 30,' # Missing closing bracket
try:
output = json.loads(malformed_json)
except json.JSONDecodeError as e:
print(f"Error: {e}") # Output: Error message indicating malformed JSON
Output:
Error: Expecting property name enclosed in double quotes
import json
json_data = '{"is_active": true, "is_verified": false}'
output = json.loads(json_data)
print(output)
Output:
{'is_active': True, 'is_verified': False}
load() to read Json data from file
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.