def Join(ary, sep = ' '): c = str() for i in range(len(ary)): if i != len(ary)-1: c += ary[i] + sep else: c += ary[i] return c