我要做的是在Python中制作一个简单的pi记忆游戏。我需要的是一种从用户那里获得输入的方法,而无需按“输入”。在每个角色之后。听起来我需要像getch这样的东西,但我无法让它发挥作用。我从这里得到了一个类似于getch的函数:https://gist.github.com/chao787/2652257#file-getch-py。我真的不懂那里的任何东西。我做的时候x = getch.getch()
'它说" AttributeError: '_Getch' object has no attribute 'getch'
"。看起来msvcrt可以为Windows做到这一点,但我有一台Mac。它看起来像curses是一个有getch的东西,但它说我需要先做initscr,但后来我得到了错误" File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/curses/__init__.py", line 30, in initscr
fd=_sys.__stdout__.fileno())
_curses.error: setupterm: could not find terminal
"。
这是我的文件只是使用输入,你必须每次按回车(我实际上输入1000位,而不是省略号)。
pi = '3.1415926535...'
def main():
print('Welcome to PiGame!')
pigame()
while True:
yn = input('Play again? y/n ')
if yn == 'y':
pigame()
else: return
def pigame():
n=0
print('Go!')
while n<=1000:
x = input()
if x == pi[n]:
n += 1
else:
print('I\'m sorry. The next digit was '+pi[n]+'.')
print('You got to '+str(n)+' digits!')
return
print('You got to 1000! Hooray!')
答案 0 :(得分:4)
您可以使用getch
,termios
和sys
套件定义自己的tty
版本:
def getch():
import termios
import sys, tty
def _getch():
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(fd)
ch = sys.stdin.read(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
return ch
return _getch()
答案 1 :(得分:0)
这是一个测试(在RPi,Py 3上)代码,可以读取指定长度的字符而无需点击Enter按钮
但是考虑一件事:
必须在终端上运行,否则会引发错误
import termios, sys , tty
def _getch():
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(fd)
ch = sys.stdin.read(1) #This number represents the length
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
return ch
getch = _getch()
print(getch)