Стрелов Глеб Сергеевич
12.10.2019 20:28 (2:50) [2720358]
def Join(array, separator=' '): res = '' for i in array: res += i + separator return res