I have three json and wish to combine three of them to it respective value.
jsonlistA = { "header1": "Hello World1", "header2": "Hello World2", "header3": "Hello World3"}
jsonlistB = { "condition1": "halo1", "condition2": "halo2", "condition3": "halo3"}
jsonlistC = { "parameter1": "hi1", "parameter2": "hi2", "parameter3": "hi3"}
What i want to achieve
I want it to pair json list a,b,c with three value from three different list. For example, header1,condition1, parameter1 should be one list eg.
jsonCombineA = { "header1": "Hello World1", "condition1": "halo1","parameter1": "hi1"}
So when I print the json to string it should be HelloWorld1 halo1 hi1.