Sometimes, we want to make a comma-separated string from a list of strings with Python.
In this article, we’ll look at how to make a comma-separated string from a list of strings with Python.
How to make a comma-separated string from a list of strings with Python?
To make a comma-separated string from a list of strings with Python, we call the string’s join
method.
For instance, we write
my_list = ['a', 'b', 'c', 'd']
my_string = ','.join(my_list)
to call ','.join
with my_list
to combine the strings in my_list
into a string separated by a comma.
Conclusion
To make a comma-separated string from a list of strings with Python, we call the string’s join
method.