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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。