. 用tkinter 实现一个简单的 GUI 程序,单击 “click”按钮,在终端打印出“hello world”的代码
时间: 2024-02-03 17:15:00 浏览: 177
基于tkinter的简单ui
好的,以下是一个简单的 tkinter GUI 程序,点击按钮后会在终端打印出 "hello world":
```python
import tkinter as tk
def print_hello():
print("hello world")
root = tk.Tk()
root.geometry("200x100")
root.title("Hello World")
button = tk.Button(root, text="Click", command=print_hello)
button.pack(pady=20)
root.mainloop()
```
这个程序创建了一个窗口,包含一个按钮 "Click"。当点击按钮时,调用 `print_hello` 函数,在终端输出 "hello world"。
阅读全文