Answers for "how to output index of list python without braquets"

0

how to output index of list python without braquets

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

print(*a_list, sep = ", ")
# OUTPUT
# a, b, c
Posted by: Guest on March-05-2021

Code answers related to "how to output index of list python without braquets"

Python Answers by Framework

Browse Popular Code Answers by Language