在本教程中,我们将借助示例了解 Python input() 函数。
input()
函数接受用户输入并返回。
示例
name = input("Enter your name: ")
print(name)
# Output:
# Enter your name: James
# James
input() 语法
用法:
input([prompt])
参数:
input()
函数采用单个可选参数:
- 提示(可选)- 写入标准输出(通常是屏幕)的字符串,没有尾随换行符
返回:
input()
函数从输入(通常来自用户)中读取一行,通过删除尾随换行符将该行转换为字符串,然后返回它。
如果读取 EOF,则会引发 EOFError
异常。
示例 1:input() 如何在 Python 中工作?
# get input from user
inputString = input()
print('The inputted string is:', inputString)
输出
Python is interesting. The inputted string is: Python is interesting
示例 2:通过提示从用户那里获取输入
# get input from user
inputString = input('Enter a string:')
print('The inputted string is:', inputString)
输出
Enter a string: Python is interesting. The inputted string is: Python is interesting
相关用法
- Python scipy integrate.trapz用法及代码示例
- Python int转exponential用法及代码示例
- Python integer转string用法及代码示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代码示例
- Python scipy interpolate.CubicSpline.solve用法及代码示例
- Python scipy integrate.cumtrapz用法及代码示例
- Python scipy interpolate.PchipInterpolator.solve用法及代码示例
- Python integer转roman用法及代码示例
- Python scipy integrate.simps用法及代码示例
- Python scipy interpolate.Akima1DInterpolator.solve用法及代码示例
- Python int()用法及代码示例
- Python string isalnum()用法及代码示例
- Python id()用法及代码示例
- Python string isidentifier()用法及代码示例
- Python numpy irr用法及代码示例
- Python calendar isleap()用法及代码示例
- Python math isclose()用法及代码示例
- Python string isupper()用法及代码示例
- Python numpy matrix identity()用法及代码示例
- Python itertools.groupby()用法及代码示例
注:本文由纯净天空筛选整理自 Python input()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。