Python 2 提供了 raw_input() 函數來取得使用者輸入。然而,這個函數在Python 3中被重新命名,導致呼叫時出錯。
在Python 3中嘗試使用raw_input()時,會遇到NameError異常,表示函數未定義。
要解決此錯誤,只需使用 input() 而不是raw_input()。從 Python 3 開始,raw_input() 函數被重新命名為 input() 以簡化輸入處理過程。 input() 函數現在執行與 Python 2 中 raw_input() 相同的功能。
因此,Python 2 中的以下程式碼片段:
name = raw_input("Enter your name: ")
可以在 Python 3 中重寫如:
name = input("Enter your name: ")
以上是如何處理 Python 2 和 Python 3 之間的使用者輸入差異?的詳細內容。更多資訊請關注PHP中文網其他相關文章!