Answers for "how to combine list into comma separated string python"

5

python list comma separated string

hobbies = ["basketball", "football", "swimming"]
print("My hobbies are:")      	# My hobbies are:
print(", ".join(hobbies)) 		# basketball, football, swimming
Posted by: Guest on February-16-2021
-1

convert list to string separated by comma python

converted_list = [str(element) for element in a_list]
Posted by: Guest on October-04-2020

Code answers related to "how to combine list into comma separated string python"

Python Answers by Framework

Browse Popular Code Answers by Language