Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Tkinter를 사용하여 유사 테이블 만들기

<시간/>

테이블은 행과 열 형태의 데이터 항목을 포함합니다. Numpy, Pandas, Matplotlib 등과 같은 다른 Python 라이브러리를 사용하여 데이터를 조작할 수 있는 애플리케이션에 테이블 GUI가 있는 경우를 생각해 보십시오. Tkinter는 TreeView를 제공합니다. 사용자가 테이블을 그리고 데이터를 테이블에 삽입할 수 있게 해주는 위젯. 트리뷰 위젯은 Treeview(parent, column, **options)를 정의하여 구성할 수 있습니다. 생성자.

예시

# Import the required libraries
from tkinter import *
from tkinter import ttk

# Create an instance of tkinter frame
win = Tk()

# Set the size of the tkinter window
win.geometry("700x350")
s = ttk.Style()
s.theme_use('clam')

# Add a Treeview widget
tree = ttk.Treeview(win, column=("c1", "c2", "c3"), show='headings', height=5)
tree.column("# 1", anchor=CENTER)
tree.heading("# 1", text="ID")
tree.column("# 2", anchor=CENTER)
tree.heading("# 2", text="FName")
tree.column("# 3", anchor=CENTER)
tree.heading("# 3", text="LName")

# Insert the data in Treeview widget
tree.insert('', 'end', text="1", values=('1', 'Joe', 'Nash'))
tree.insert('', 'end', text="2", values=('2', 'Emily', 'Mackmohan'))
tree.insert('', 'end', text="3", values=('3', 'Estilla', 'Roffe'))
tree.insert('', 'end', text="4", values=('4', 'Percy', 'Andrews'))
tree.insert('', 'end', text="5", values=('5', 'Stephan', 'Heyward'))

tree.pack()

win.mainloop()

출력

위의 코드를 실행하면 일부 행과 열이 있는 테이블이 포함된 창이 표시됩니다.

Tkinter를 사용하여 유사 테이블 만들기