So geben Sie den Index der Listenpython ohne Blätter aus

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

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