91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python監控鍵盤輸入實例代碼

發布時間:2020-09-05 18:19:18 來源:腳本之家 閱讀:185 作者:CSDN_Flying 欄目:開發技術

本文研究的主要是python監控鍵盤輸入的相關代碼,用到了os,sys,time等,具體實現代碼如下:

#!/usr/bin/env python  
# -*- coding: utf-8 -*- 
import os  
import sys 
import tty, termios 
import time   
 
if __name__ == '__main__': 
  print "Reading form keybord" 
  print """  i 
j k l 
  m""" 
  print 'press Q to quit' 
  while True: 
    fd=sys.stdin.fileno() 
    old_settings=termios.tcgetattr(fd) 
    #old_settings[3]= old_settings[3] & ~termios.ICANON & ~termios.ECHO  
    try: 
      tty.setraw(fd) 
      ch=sys.stdin.read(1) 
    finally: 
      termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)  
      #print 'error' 
    if ch=='i': 
      print 'move forward' 
    elif ch=='m': 
      print 'move back' 
    elif ch=='j': 
      print "turn left!" 
    elif ch=='l': 
      print "turn right!" 
    elif ch=='u': 
      print "turn right!" 
    elif ch=='o': 
      print "turn right!" 
    elif ch=='k': 
      print "stop motor!" 
    elif ch=='q': 
      print "shutdown!" 
      break 
    elif ord(ch)==0x3: 
      #這個是ctrl c 
      print "shutdown" 
      break 
    print "Reading form keybord" 
    print """  i 
j k l 
  m""" 
    print 'press Q or ctrl+c to quit' 
    #rate.sleep() 

結果:

python監控鍵盤輸入實例代碼

總結

以上就是本文關于python監控鍵盤輸入實例代碼的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

毕节市| 瓦房店市| 四平市| 乐亭县| 江山市| 彰化县| 肇源县| 洞头县| 巴彦县| 永济市| 疏附县| 泾阳县| 肇东市| 安西县| 鄱阳县| 广宗县| 灵台县| 莱阳市| 颍上县| 凤凰县| 米泉市| 巨鹿县| 通许县| 内乡县| 洞口县| 红河县| 博乐市| 中卫市| 龙陵县| 通江县| 武鸣县| 花垣县| 依安县| 汽车| 车致| 石渠县| 凌源市| 三原县| 云梦县| 洛川县| 逊克县|