p
y
t
h
o
n

↑ターミナルにこんな感じで表示させたいと思います
1つの例として...

py_str = "python"
for i in py_str:
    print(i)
['p', 'y', 't', 'h', 'o', 'n']

このようにリストっぽく表示させたい時は

python_list = "python"
py_str = list(python_list)
print (py_str)

おすすめの記事