Pythonic方法等待列表中每个项目的按键 - 然后根据按下的键执行某些操作 -

时间:2017-10-23 18:48:41

标签: python key wait pressed

我想迭代一个项目列表并记录每个项目的分数。我不知道如何定义一个函数来等到按下一个键。我试过mscvrt和cv。我不想使用input(),因为我希望它能在屏幕上运行。我只想知道是否按下该键然后继续。我使用python 3。

def wait_for_key():
#wait until a key is pressed, return that key
def score_list():
a = [jack, lauren, taylor]
b = []
for item in a:
    score = wait_for_key()
    itemscore = item + ", " + score
    b.append(itemscore)

0 个答案:

没有答案