第13177题 单选
Python Tkinter中Button组件绑定点击事件触发函数的参数是哪一个?

为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)