7
我想在Eclipse中使用msvcrt.getch()
與PyDev讀取signe char,但我發現它不起作用(但它在Windows控制檯中工作)。在Eclipse中使用msvcrt.getch()/ PyDev
不知道該怎麼辦?
我想在Eclipse中使用msvcrt.getch()
與PyDev讀取signe char,但我發現它不起作用(但它在Windows控制檯中工作)。在Eclipse中使用msvcrt.getch()/ PyDev
不知道該怎麼辦?
在PyDev中運行時可能使用sys.stdin.read
?如sys.stdin.read(1)
從輸入中讀取1行...用於Windows控制檯和PyDev中,根據操作系統和運行變體進行相同的選擇(使用sys.stdin.isatty
)。例如下一個代碼讀取有時間限制的用戶輸入。但在Windows控制檯上運行時,如果程序的標準輸入管道與另一個程序的標準輸出,然後sys.stdin.isatty
回報False
和輸入與sys.stdin.read
,不msvcrt.getch
閱讀:
import sys, time
import platform
if platform.system() == "Windows":
import msvcrt
else:
from select import select
def input_with_timeout_sane(prompt, timeout, default):
"""Read an input from the user or timeout"""
print prompt,
sys.stdout.flush()
rlist, _, _ = select([sys.stdin], [], [], timeout)
if rlist:
s = sys.stdin.readline().replace('\n','')
else:
s = default
print s
return s
def input_with_timeout_windows(prompt, timeout, default):
start_time = time.time()
print prompt,
sys.stdout.flush()
input = ''
read_f=msvcrt.getche
input_check=msvcrt.kbhit
if not sys.stdin.isatty():
read_f=lambda:sys.stdin.read(1)
input_check=lambda:True
while True:
if input_check():
chr_or_str = read_f()
try:
if ord(chr_or_str) == 13: # enter_key
break
elif ord(chr_or_str) >= 32: #space_char
input += chr_or_str
except:
input=chr_or_str
break #read line,not char...
if len(input) == 0 and (time.time() - start_time) > timeout:
break
if len(input) > 0:
return input
else:
return default
def input_with_timeout(prompt, timeout, default=''):
if platform.system() == "Windows":
return input_with_timeout_windows(prompt, timeout, default)
else:
return input_with_timeout_sane(prompt, timeout, default)
print "\nAnswer is:"+input_with_timeout("test?",10,"no input entered")
這是不是真的有可能。請參閱:https://stackoverflow.com/a/46303939/110451 – 2017-09-19 15:09:05