题库 Python题库 题目列表 下列Python代码创建了一个按钮,当按钮被点击时,会发...
单选题

下列Python代码创建了一个按钮,当按钮被点击时,会发生什么?( )

import tkinter as tk  
def on_button_click():  
    print("Button clicked!")  
root = tk.Tk()  
button = tk.Button(root, text="Click me!", command=on_button_click)  
button.pack()  
root.mainloop()
A.

弹出对话框显示"Button clicked!"

B.

在控制台输出"Button clicked!"

C.

窗口标题变为"Button clicked!"

D.

按钮文本变为"Clicked!"

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