how to output index of list python without braquets

Solutions on MaxInterview for how to output index of list python without braquets by the best coders in the world

showing results for - "how to output index of list python without braquets"
Enrico
28 Jun 2020
1a_list = ["a", "b", "c"]
2
3print(*a_list, sep = ", ")
4# OUTPUT
5# a, b, c
similar questions