Python input() 函數用於獲取用戶的輸入。它提示用戶輸入並讀取一行。讀取數據後,它將其轉換為字符串並返回。如果讀取 EOF,它會拋出錯誤 EOFError。
簽名
input ([prompt])
參數
prompt: 這是一個提示用戶輸入的字符串消息。
返回
它在轉換為字符串後返回用戶輸入。
讓我們看一些 input() 函數的例子來理解它的函數。
Python input() 函數示例 1
在這裏,我們使用這個函數獲取用戶輸入並顯示給用戶。
# Python input() function example
# Calling function
val = input("Enter a value:")
# Displaying result
print("You entered:",val)
輸出:
Enter a value:45 You entered:45
Python input() 函數示例2
input() 方法返回字符串值。所以,如果我們要執行算術運算,我們需要先對值進行轉換。請參閱下麵的示例。
# Python input() function example
# Calling function
val = input("Enter an integer:")
# Displaying result
val = int(val) # casting into string
sqr = (val*val) # getting square
print("Square of the value:",sqr)
輸出:
Enter an integer:12 Square of the value:144
相關用法
- Python input()用法及代碼示例
- Python int()用法及代碼示例
- Python id()用法及代碼示例
- Python string isidentifier()用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python math isclose()用法及代碼示例
- Python string isupper()用法及代碼示例
- Python string isalnum()用法及代碼示例
- Python numpy matrix identity()用法及代碼示例
- Python itertools.groupby()用法及代碼示例
- Python isdisjoint()用法及代碼示例
- Python string istitle()用法及代碼示例
- Python itertools.repeat()用法及代碼示例
- Python math isnan()用法及代碼示例
- Python string isalpha()用法及代碼示例
- Python calendar itermonthdays2()用法及代碼示例
- Python dict items()用法及代碼示例
- Python Tkinter iconphoto()用法及代碼示例
- Python calendar itermonthdays()用法及代碼示例
- Python string isdigit()用法及代碼示例
注:本文由純淨天空篩選整理自 Python input() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。