list(string) 將string的每一個字都換成list的項目. >>> word='a,b,c,d,e' >>> print(type(word)) <type 'str'> >>> wordlist = list(word) ...
確定! 回上一頁