I have a list in Python e.g.
names = ["A", "B", "C"]
I want to print the array in a single line without the normal " []
names = ["A", "B", "C"]
print (names)
Will give the output as:
["A", "B", "C"]
That is not the format I want instead I want it to be like this;
A, B, C