List Python Tutorial

word = "Python"
list = []
for ch in word:
    list.append(ch)
print list