python tkinter 导入并显示表格
时间: 2023-07-02 12:12:54 浏览: 199
python tkinter之 复选、文本、下拉的实现
5星 · 资源好评率100%
好的,以下是一个使用 Python tkinter 模块导入并显示表格的示例代码:
```python
import tkinter as tk
from tkinter import ttk
# 创建主窗口
root = tk.Tk()
root.title("Table Example")
# 创建表格
table = ttk.Treeview(root, columns=("Name", "Age", "Gender"))
table.heading("#0", text="ID")
table.heading("Name", text="Name")
table.heading("Age", text="Age")
table.heading("Gender", text="Gender")
table.column("#0", width=50)
table.column("Name", width=100)
table.column("Age", width=50)
table.column("Gender", width=50)
# 填充表格
table.insert("", "end", text="1", values=("Alice", "25", "Female"))
table.insert("", "end", text="2", values=("Bob", "30", "Male"))
table.insert("", "end", text="3", values=("Charlie", "40", "Male"))
# 显示表格
table.pack(padx=10, pady=10)
# 运行主窗口
root.mainloop()
```
以上代码创建了一个包含三列(姓名、年龄和性别)的表格,并在其中插入了三行数据。最后,通过 `mainloop()` 方法运行主窗口,即可显示出表格。
阅读全文