JSON is a cross language, widely used method to serialize data
Supported data types : int, float, boolean, string, list and dict. See -> JSON Wiki for more
Here is an example demonstrating the basic usage of JSON :-
import json
families = (['John'], ['Mark', 'David', {'name': 'Avraham'}])
...