xxxxxxxxxx
#python 3.x
words_list = ['Joey', 'doesnot', 'share', 'food']
print(" ".join(words_list))
xxxxxxxxxx
sample_list1 = [0, 1, 2, 3, 4]
sample_list2 = [5, 6, 7, 8]
result = sample_list1 + sample_list2
print ("Concatenated list: " + str(result))