首頁 >後端開發 >Python教學 >為什麼 `raw_input()` 在 Python 3 中不起作用?

為什麼 `raw_input()` 在 Python 3 中不起作用?

Patricia Arquette
Patricia Arquette原創
2024-12-07 20:56:14985瀏覽

Why Doesn't `raw_input()` Work in Python 3?

在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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn