cara mengeluarkan indeks daftar python tanpa braquet

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

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