Python 入門到精通 — 輸入
內容
Python 的 Input 函數 ✈️
在 Python 中可以使用 input(prompt) 函數來接收用戶的輸入並可儲存到變數,並且可用 "prompt" 引數,作為輸入前的提示訊息。
範例
input('Please enter your name:')
結果
Please enter your name:
可在 ":" 後輸入 "HelloWolrd" 並按下 Enter。
範例
pwd = input('Please enter your password:')
print(f'Password is:{pwd}')
結果
Please enter your password: Password is:12345 Process finished with exit code 0
可在 ":" 後輸入 "12345" 並按下 Enter 將會看到 "Password is:12345"。
Input 函數接收的數据類型
將上個範例加入 "print(type(pwd))" 檢查 pwd 的類型。
pwd = input('Please enter your password:')
print(f'Password is:{pwd}')
print(type(pwd))
結果
Please enter your password:12345 Password is:12345 <class 'str'> Process finished with exit code 0
得知 pwd 儲存的類型為 "str" 字串類型。