1、Python中獲取鍵盤值的方式:input()函數,然後打印該數據。
2、也可以指定輸入的類型,Python有六個標準數據類型分別是:Number(數字)、String(字符串)、List(列表)、Tuple(元組)、Set(集合)及Dictionary(字典)。
3、input()獲取的值Python會默認類型為str。如果直接賦值將會自動默認數據類型。
4、input()函數解釋如下:Read a string from standard input. ?The trailing newline is stripped. 指的是輸入之後,按的回車The prompt string, if given, is printed to standard output without a trailing newline before reading input. 。
5、組合其他函數也有不同的用法。例如,eval(input())。