Can someone please help me with below request.I am trying to convert the below output from sql in Python and use as string
Value=[(132,), (2434,), (233434,), (56644,), (3435,), ]Output:Value=132,2434,233434,56644,3435tried to convert print(str(value[0][0]))Expecting : Value=132,2434,233434,56644,3435