Answers for "what join does in python"

28

what is join use for in python

>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
Posted by: Guest on April-11-2020
-1

python join

# Joins all items in a list or tuple, using a specific separator
lst = ['a', 'b', 'c']
joinedLst = ', '.join(lst)
print(x) # Prints 'a, b, c'
Posted by: Guest on October-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language