题库 Python题库 题目列表 你正在为一个python小型游戏设计界面,需要一个按钮,...
单选题

你正在为一个python小型游戏设计界面,需要一个按钮,玩家点击后会显示一个消息表示游戏开始。如何绑定一个函数到按钮点击事件,以便在点击时执行?( )

A.

button = Button(root, text="开始游戏", command=startGame)

B.

button = Button(root, text="开始游戏", onclick=startGame)

C.

button = Button(root, text="开始游戏", action=startGame)

D.

button = Button(root, text="开始游戏", event=startGame)

题目信息
2024年 6月 选择题
-
正确率
0
评论
4
点击