Snippets tagged “join”
4 snippets use this tag.
- How do I append one string to another in Python?Python
You can use the "+" operator to concatenate two strings in Python.
- How to concatenate (join) items in a list to a single stringPython
You can use the join() method to concatenate (join) items in a list to a single string in Python.
- How to convert list to stringPython
You can use the join() method to convert a list of strings to a single string.
- Why is it string.join(list) instead of list.join(string)?Python
The join() method is a string method, so it is called on a string object and takes a list of strings as its argument.