root = Tk()
A = labelframe(根,高度= 200,寬度= 300,text =‘選擇遊戲‘)。
a . pack(side =‘top‘,fill =‘both‘,expand=True)
BTN 1 = Button(a,text =‘開始遊戲‘)
btn1.grid(行=0,列=0)
Btn2 =按鈕(a,text =‘播放壹次‘)
btn2.grid(行=0,列=1)
BTN 3 = Button(a,text =‘結束遊戲‘)
btn3.grid(行=0,列=2)
root.mainloop()