ascii = ord(ch) if ascii >= 97 and ascii<= 122: ascii -= 32 ans += chr(ascii) return ans def pharse(word): words = word.split()
確定! 回上一頁