I have a variable called data. It contains following JSON value.
data=['{"time":["1000","MS"],"What is your name?":["John"]}']
I want to separate keys and values from it and want output like following.
Keys
-----
time
What is your name?
Value:
------
1000
MS
John
How to do it in python?