def trans(article): return ''.join([c.lower() if c.isalpha() else ' ' for c in article]). 想法就是說先用列表生成式換字, 如果原來是個英文字母就把它變小寫,
確定! 回上一頁