我們先試做去除字母 a 的函數: def removeVowel(word): L = list(word) while 'a' in L: L.remove('a') return ''.join(L) print(removeVowel('animal')) #印出niml.
確定! 回上一頁