Python - How to join list of strings with commas

By xngo on June 7, 2019

#!/usr/bin/python3
# Description: How to join list of strings with commas
 
fruits = [ 'apple', 'banana', 'pineapple' ]
 
print( ','.join(fruits) )

Output

About the author

Xuan Ngo is the founder of OpenWritings.net. He currently lives in Montreal, Canada. He loves to write about programming and open source subjects.