python提供了兩個內建函式從標準輸入讀入一行文字,預設的標準輸入是鍵盤。如下:
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() 函式和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]
Python 讀取鍵盤輸入字元
找了一圈,發現python下讀取鍵盤輸入的字元還挺麻煩的,找到這個例子,linux下用這個,ch是讀取的字元 import os import sys import tty,termios fd sys.stdin.fileno old settings termios.tcgetattr fd t...
python 鍵盤輸入
python鍵盤輸入與其他程式語言基本類似,回車鍵結束輸入 下面來看一段鍵盤輸入年月日,英文輸出示例 1 usr bin env python2 coding utf 8 3 定義英文月份 4 months january february march april may june july aug...
Python模擬鍵盤輸入
2.程式實現 import win32api import win32con win32api.keybd event 17,0,0,0 ctrl鍵位碼是17 win32api.keybd event 86,0,0,0 v鍵位碼是86 win32api.keybd event 86,0,win32c...