Python Merge List en chaîne
>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
RosiePuddles
>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
# example of join() function in python
numList = ['1', '2', '3', '4']
separator = ', '
print(separator.join(numList))
# use of join function to join list
# elements without any separator.
# Joining with empty separator
list1 = ['g','e','e','k', 's']
print("".join(list1))
#Output:
geeks
# Мөрийн арга .join() нь мөрүүдийн жагсаалтыг хооронд нь холбож, хүссэн хязгаарлагчтай холбосон шинэ мөр үүсгэнэ.
# .join() аргыг хязгаарлагч дээр ажиллуулж, нэгтгэх мөрийн массивыг аргумент болгон дамжуулдаг.
x = "-".join(["Codecademy", "is", "awesome"])
print(x)
# Prints: Codecademy-is-awesome
w=["as","3e","1"]
a='vf'.join(w)
print(a)
//displays string asvf3evf1