Comment sortir l'index de la liste Python sans braquets

a_list = ["a", "b", "c"]

print(*a_list, sep = ", ")
# OUTPUT
# a, b, c
Bookie0