a_list = ["a", "b", "c"] joined_string = ",".join(a_list)
converted_list = [str(element) for element in a_list]