我想迭代一个项目列表并记录每个项目的分数。我不知道如何定义一个函数来等到按下一个键。我试过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)