def Join(ary, separator = ' '): ans = [] bns = '' for i in ary: ans+= [i + separator] for j in ans: bns += j return(bns)