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