在本教程中,我們將借助示例了解 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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。