word = "Python" list = [] for ch in word: list.append(ch) print list string = "" for i in range(len(list)): string += list[i] print string