a_list = ["a", "b", "c"] joined_string = ",". join(a_list) #Concatenate elements of `a_list` delimited by `","` print(joined_string) #output - a,b,c