Call print(*value, sep=" ") with value as a list to unpack and print the elements of the list seperated by the zero or many characters contained in sep. To seperate each element with a comma followed by a space, set sep to ", ".
a_list = ["a", "b", "c"]
print(*a_list, sep = ", ")
OUTPUT
a, b, c