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 & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.