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