Putar daftar ke string dengan koma python
a_list = ["a", "b", "c"]
joined_string = ",".join(a_list)
Real Raccoon
a_list = ["a", "b", "c"]
joined_string = ",".join(a_list)
converted_list = [str(element) for element in a_list]