最佳答案
Python 中是否有一个将一个单词拆分成单个字母列表的函数? 例如:
s = "Word to Split"
to get
wordlist = ['W', 'o', 'r', 'd', ' ', 't', 'o', ' ', 'S', 'p', 'l', 'i', 't']