在Python 3 中重新定義'raw_input' 函數
嘗試在Python 3 中使用'raw_input(>
嘗試在Python 3 中使用'raw_input()' 函數時,用戶經常遇到錯誤,表示名稱未定義。這是因為 'raw_input()' 在 Python 3 中已重新命名為 'input()' 以增強其功能。在Python 3 中將'raw_input()' 重新命名為'input()'
為了解決這個問題,Python 3 引入了'input()'函數來取代'raw_input()'。此變更記錄在官方 Python 文件「Python 3.0 中的新增功能」的內建部分。 利用「input()」函數,Python 3 程式設計師可以從標準輸入,就像早期 Python 版本中的「raw_input()」一樣。但是,「input()」透過自動將輸入轉換為 Python 字串來提供附加功能,從而消除了明確型別轉換的需要。以上是為什麼 `raw_input()` 在 Python 3 中不起作用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!