Bryan
0
Q:

.join

# example of join() function in python

numList = ['1', '2', '3', '4']
separator = ', '
print(separator.join(numList))
15
"seperator".join(list/tuple)
1
# Python program to demonstrate the 
# use of join function to join list 
# elements without any separator. 
  
# Joining with empty separator 
list1 = ['g','e','e','k', 's']  
print("".join(list1)) 
0

New to Communities?

Join the community