input([prompt])

參數 說明
[ ] 表示可有可無。
prompt 要讓使用者鍵盤輸入資料前的提示訊息。

範例:
以下使用 _ 當作游標
指令 結果 說明
x = input() _ 在鍵盤輸入資料前,
游標前是空白
x = input("Input a number:") Input a number:_ 會先出現一段訊息
Input a number:
然後游標接在後面。