基于python tkinter 输出信息
时间: 2023-10-03 09:02:41 浏览: 61
Python tkinter
在 Python 中,可以使用 Tkinter 模块来创建 GUI 应用程序。以下是一个简单的示例,演示如何在 Tkinter 窗口中输出信息:
```python
import tkinter as tk
def print_message():
message = "Hello, world!"
output_label.configure(text=message)
root = tk.Tk()
root.title("Output Message")
# 创建标签
output_label = tk.Label(root, text="")
output_label.pack()
# 创建按钮
button = tk.Button(root, text="Print Message", command=print_message)
button.pack()
root.mainloop()
```
运行上述代码后,将会创建一个窗口,其中包含一个标签和一个按钮。单击按钮将会在标签中输出 "Hello, world!"。可以根据自己的需要修改 `print_message()` 函数来输出其他信息。
阅读全文