how to output index of list python without braquets code example
Example: how to output index of list python without braquets
a_list = ["a", "b", "c"]
print(*a_list, sep = ", ")
# OUTPUT
# a, b, c
a_list = ["a", "b", "c"]
print(*a_list, sep = ", ")
# OUTPUT
# a, b, c