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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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