The code below loops through the records and displays the result vertical one after another.
Here is what i want
I need to print this text in a single line Eg. Stackoverflow.com is a Programmers Question and Answering Site
import os
import json
my_json = '["Stack", "over" , "flow", ".com", "is a ", "Programmers Question and Answering Site"]'
data = json.loads(my_json)
# for result in data.values():
for result in data:
print(result)
# Display the result in a single line
1