0

私はPython3タートルで書かれた簡単なゲームを持っています.ゲームが終了したら、「続行しますか?」というメッセージを表示したい. (y/n)' を入力し、ユーザーがキーボードのボタンを押すまで待ち​​ます。待機機能を実装する方法はありますか?

4

1 に答える 1

0

textinputメソッドをチェックしてください:

def textinput(self, title, prompt):
    """Pop up a dialog window for input of a string.

    Arguments: title is the title of the dialog window,
    prompt is a text mostly describing what information to input.

    Return the string input
    If the dialog is canceled, return None.

    Example (for a TurtleScreen instance named screen):
    >>> screen.textinput("NIM", "Name of first player:")

    """
    return simpledialog.askstring(title, prompt)
于 2013-03-19T23:54:22.763 に答える