Python 的 input(~)
方法從用戶輸入中讀取一行,將其轉換為字符串並返回。
注意
input(~)
方法將暫停您的程序並等待用戶輸入一些文本。
參數
1.prompt
| string
| optional
寫入標準輸出的字符串,末尾不帶換行符。
返回值
來自用戶輸入的字符串。
例子
基本用法
詢問用戶的姓名並將其存儲到變量 a
中:
a = input("What is your name?")
# Assume the user input 'Tom'
print("Hello " + a)
Hello Tom
提供多行提示
向用戶提供多行提示:
prompt = "Hello and welcome to SkyTowner!"
prompt += "\nPlease provide us with your first name so that we can customize our messages: "
a = input(prompt)
#Hello and welcome to SkyTowner!
#Please provide us with your first name so that we can customize our messages:
# Assume the user input 'Tom'
print("Hello " + a)
Hello Tom
相關用法
- Python input用法及代碼示例
- Python input()用法及代碼示例
- Python BeautifulSoup insert方法用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python Django index用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python BeautifulSoup insert_after方法用法及代碼示例
- Python int.from_bytes用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python int構造函數用法及代碼示例
- Python NumPy insert方法用法及代碼示例
- Python inspect.BoundArguments.apply_defaults用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
- Python int.bit_length用法及代碼示例
- Python BeautifulSoup insert_before方法用法及代碼示例
- Python integer轉roman用法及代碼示例
- Python inspect.BoundArguments用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python | input method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。