用法:
input([prompt])
如果存在
prompt
參數,則將其寫入標準輸出,不帶尾隨換行符。然後該函數從輸入中讀取一行,將其轉換為字符串(去除尾隨的換行符),然後返回。讀取 EOF 時,會引發EOFError
。例子:>>> s = input('--> ') --> Monty Python's Flying Circus >>> s "Monty Python's Flying Circus"
如果加載了
readline
模塊,那麽input()
將使用它來提供精細的行編輯和曆史函數。在讀取輸入之前引發帶有參數
prompt
的審計事件builtins.input
在成功讀取輸入後引發帶有結果的審計事件
builtins.input/result
。
相關用法
- Python input()用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python int.from_bytes用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python inspect.BoundArguments.apply_defaults用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
- Python int.bit_length用法及代碼示例
- Python integer轉roman用法及代碼示例
- Python inspect.BoundArguments用法及代碼示例
- Python int.bit_count用法及代碼示例
- Python inspect.Parameter.kind.description用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 input。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。