Jak wyprowadzić indeks listy Python bez bralquetów
a_list = ["a", "b", "c"]
print(*a_list, sep = ", ")
# OUTPUT
# a, b, c
Bookie0
a_list = ["a", "b", "c"]
print(*a_list, sep = ", ")
# OUTPUT
# a, b, c