這篇文章主要介紹了Python讀取鍵盤輸入的2種方法,主要使用的就是raw_input函數和input函數,本文分別給出使用實例,需要的朋友可以參考下
Python提供了兩個內置函數從標准輸入讀入一行文本,默認的標准輸入是鍵盤。如下:
1.raw_input
2.input
raw_input函數
raw_input() 函數從標准輸入讀取一個行,並返回一個字符串(去掉結尾的換行符):
代碼如下:
str = raw_input("Enter your input: ");
print "Received input is : ", str
這將提示你輸入任意字符串,然後在屏幕上顯示相同的字符串。當我輸入"Hello Python!",它的輸出如下:
代碼如下:
Enter your input: Hello Python
Received input is : Hello Python
input函數
input() 函數和raw_input() 函數基本可以互換,但是input會假設你的輸入是一個有效的Python表達式,並返回運算結果。這應該是兩者的最大區別。
代碼如下:
str = input("Enter your input: ");
print "Received input is : ", str
這會產生如下的對應著輸入的結果:
代碼如下:
Enter your input: [x*5 for x in range(2,10,2)]
Recieved input is : [10, 20, 30, 40]