I have 2 different arrays:
dataList = ['a_cout', 'b_count', 'c_count']
dataList1 = [15404, 21381, 3]
I am trying to merge them into a json object as Key-Value pair like :
'{
"a_count" : 15401,
"b_count" : 21381,
"c_count" : 3
}'
I am using json lib in Python 2.x